Searched refs:bitsSize (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/lld/ELF/Arch/ |
D | Mips.cpp | 229 static void writeValue(uint8_t *loc, uint64_t v, uint8_t bitsSize, in writeValue() argument 232 uint32_t mask = 0xffffffff >> (32 - bitsSize); in writeValue() 238 static void writeShuffleValue(uint8_t *loc, uint64_t v, uint8_t bitsSize, in writeShuffleValue() argument 245 writeValue(loc, v, bitsSize, shift); in writeShuffleValue() 252 static void writeMicroRelocation16(uint8_t *loc, uint64_t v, uint8_t bitsSize, in writeMicroRelocation16() argument 255 uint16_t mask = 0xffff >> (16 - bitsSize); in writeMicroRelocation16()
|
/external/angle/src/common/ |
D | utilities.cpp | 667 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize) in AllocateFirstFreeBits() argument 669 ASSERT(allocationSize <= bitsSize); in AllocateFirstFreeBits() 674 for (unsigned int i = 0; i < bitsSize - allocationSize + 1; i++) in AllocateFirstFreeBits()
|
D | utilities.h | 56 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize);
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | utilities.h | 45 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize);
|
D | utilities.cpp | 306 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize) in AllocateFirstFreeBits() argument 308 ASSERT(allocationSize <= bitsSize); in AllocateFirstFreeBits() 312 for(unsigned int i = 0; i < bitsSize - allocationSize + 1; i++) in AllocateFirstFreeBits()
|