Searched defs:bitIndex (Results 1 - 11 of 11) sorted by last modified time

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/skia/third_party/etc1/
H A Detc1.cpp307 const etc1_byte* pIn, etc1_uint32 *pLow, int bitIndex,
337 << bitIndex;
306 chooseModifier(const etc1_byte* pBaseColors, const etc1_byte* pIn, etc1_uint32 *pLow, int bitIndex, const int* pModifierTable) argument
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_helpers.cc552 int bitIndex, map<string, string>* variables) {
553 (*variables)["get_" + name] = GenerateGetBit(bitIndex);
554 (*variables)["set_" + name] = GenerateSetBit(bitIndex);
555 (*variables)["clear_" + name] = GenerateClearBit(bitIndex);
556 (*variables)["different_" + name] = GenerateDifferentBit(bitIndex);
551 SetBitOperationVariables(const string name, int bitIndex, map<string, string>* variables) argument
/external/icu/icu4c/source/test/perf/usetperf/
H A Dbitset.cpp30 UBool BitSet::get(int32_t bitIndex) const {
31 uint32_t longIndex = bitIndex >> 5;
32 int32_t bitInLong = bitIndex & 0x1F;
37 void BitSet::set(int32_t bitIndex) { argument
38 uint32_t longIndex = bitIndex >> 5;
39 int32_t bitInLong = bitIndex & 0x1F;
/external/chromium_org/third_party/skia/third_party/etc1/
H A Detc1.cpp307 const etc1_byte* pIn, etc1_uint32 *pLow, int bitIndex,
337 << bitIndex;
306 chooseModifier(const etc1_byte* pBaseColors, const etc1_byte* pIn, etc1_uint32 *pLow, int bitIndex, const int* pModifierTable) argument
/external/chromium_org/third_party/icu/source/test/perf/usetperf/
H A Dbitset.cpp30 UBool BitSet::get(int32_t bitIndex) const {
31 uint32_t longIndex = bitIndex >> 5;
32 int32_t bitInLong = bitIndex & 0x1F;
37 void BitSet::set(int32_t bitIndex) { argument
38 uint32_t longIndex = bitIndex >> 5;
39 int32_t bitInLong = bitIndex & 0x1F;
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_helpers.cc438 string GetBitFieldNameForBit(int bitIndex) { argument
439 return GetBitFieldName(bitIndex / 32);
444 string GenerateGetBitInternal(const string& prefix, int bitIndex) { argument
445 string varName = prefix + GetBitFieldNameForBit(bitIndex);
446 int bitInVarIndex = bitIndex % 32;
453 string GenerateSetBitInternal(const string& prefix, int bitIndex) { argument
454 string varName = prefix + GetBitFieldNameForBit(bitIndex);
455 int bitInVarIndex = bitIndex % 32;
464 string GenerateGetBit(int bitIndex) { argument
465 return GenerateGetBitInternal("", bitIndex);
468 GenerateSetBit(int bitIndex) argument
472 GenerateClearBit(int bitIndex) argument
481 GenerateGetBitFromLocal(int bitIndex) argument
485 GenerateSetBitToLocal(int bitIndex) argument
489 GenerateGetBitMutableLocal(int bitIndex) argument
493 GenerateSetBitMutableLocal(int bitIndex) argument
[all...]
/external/chromium_org/third_party/android_opengl/etc1/
H A Detc1.cpp320 const etc1_byte* pIn, etc1_uint32 *pLow, int bitIndex,
350 << bitIndex;
319 chooseModifier(const etc1_byte* pBaseColors, const etc1_byte* pIn, etc1_uint32 *pLow, int bitIndex, const int* pModifierTable) argument
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c1711 static ANTLR3_UINT8 bitIndex[256] = variable
2028 depth = 56 + bitIndex[((xorKey & 0xFF00000000000000)>>56)];
2032 depth = 48 + bitIndex[((xorKey & 0x00FF000000000000)>>48)];
2039 depth = 40 + bitIndex[((xorKey & 0x0000FF0000000000)>>40)];
2043 depth = 32 + bitIndex[((xorKey & 0x000000FF00000000)>>32)];
2054 depth = 24 + bitIndex[((xorKey & 0x00000000FF000000)>>24)];
2058 depth = 16 + bitIndex[((xorKey & 0x0000000000FF0000)>>16)];
2065 depth = 8 + bitIndex[((xorKey & 0x0000000000000FF00)>>8)];
2069 depth = bitIndex[xorKey & 0x00000000000000FF];

Completed in 6149 milliseconds