/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/ |
meta.c | 2515 GLint bit; local [all...] |
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
LzmaEnc.c | 673 UInt32 bit; local 675 bit = (symbol >> i) & 1; 676 RangeEnc_EncodeBit(rc, probs + m, bit); 677 m = (m << 1) | bit; 687 UInt32 bit = symbol & 1; local 688 RangeEnc_EncodeBit(rc, probs + m, bit); 689 m = (m << 1) | bit; 713 UInt32 bit = symbol & 1; local 715 price += GET_PRICEa(probs[m], bit); 716 m = (m << 1) | bit; [all...] |
/external/chromium_org/v8/src/arm/ |
assembler-arm.h | 142 int bit() const { function in struct:v8::internal::Register 188 int bit() const { function in struct:v8::internal::SwVfpRegister 238 int bit() const { function in struct:v8::internal::DwVfpRegister 431 int bit() const { function in struct:v8::internal::CRegister 557 // offset is any signed 32-bit value; offset is first loaded to register ip if 558 // it does not fit the addressing mode (12-bit unsigned and sign bit) 920 // ARMv7 instructions for loading a 32 bit immediate in two instructions. [all...] |
/external/deqp/modules/gles31/functional/ |
es31fSSBOLayoutCase.cpp | 74 deUint32 bit; member in struct:deqp::gles31::bb::__anon24109 89 if (remBits & bitDesc[descNdx].bit) 94 remBits &= ~bitDesc[descNdx].bit; 769 // \note Random bit pattern is used for true values. Spec states that all non-zero values are [all...] |
/external/elfutils/0.153/libcpu/ |
i386_parse.c | 357 struct bitvalue *bit; member in union:YYSTYPE 689 "bit", "optargs", "args", "arg", "argcomp", 0 [all...] |
/external/freetype/src/raster/ |
ftraster.c | 336 /* values for the `flags' bit field */ 361 unsigned flags; /* Bit 0-2: drop-out mode */ 362 /* Bit 3: profile orientation (up/down) */ 363 /* Bit 4: is top profile? */ 364 /* Bit 5: is bottom profile? */ 509 FT_Bitmap target; /* description of target bit/pixmap */ 2769 PByte bit, bit2; local [all...] |
/external/lldb/tools/debugserver/source/MacOSX/arm/ |
DNBArchImpl.cpp | 495 // Set the single step bit in the processor status register. 543 // 32 bit thumb opcode... 546 // We can't take care of a 32 bit thumb instruction single step 583 // return 1 if bit "BIT" is set in "value" 584 static inline uint32_t bit(uint32_t value, uint32_t bit) function 586 return (value >> bit) & 1u; 602 uint32_t cpsr_n = bit(cpsr, 31); // Negative condition code flag 603 uint32_t cpsr_z = bit(cpsr, 30); // Zero condition code fla [all...] |
/external/lzma/C/ |
LzmaEnc.c | 672 UInt32 bit;
local 674 bit = (symbol >> i) & 1;
675 RangeEnc_EncodeBit(rc, probs + m, bit);
676 m = (m << 1) | bit;
686 UInt32 bit = symbol & 1;
local 687 RangeEnc_EncodeBit(rc, probs + m, bit);
688 m = (m << 1) | bit;
712 UInt32 bit = symbol & 1;
local 714 price += GET_PRICEa(probs[m], bit);
715 m = (m << 1) | bit;
[all...] |
/external/lzma/Java/SevenZip/Compression/LZMA/ |
Encoder.java | 83 int bit = ((symbol >> i) & 1);
local 84 rangeEncoder.Encode(m_Encoders, context, bit);
85 context = (context << 1) | bit;
95 int bit = ((symbol >> i) & 1);
local 101 same = (matchBit == bit);
103 rangeEncoder.Encode(m_Encoders, state, bit);
104 context = (context << 1) | bit;
118 int bit = (symbol >> i) & 1;
local 119 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[((1 + matchBit) << 8) + context], bit);
120 context = (context << 1) | bit;
130 int bit = (symbol >> i) & 1; local [all...] |
/external/mesa3d/src/mesa/drivers/common/ |
meta.c | 2515 GLint bit; local [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/ |
ftraster.c | 336 /* values for the `flags' bit field */ 361 unsigned flags; /* Bit 0-2: drop-out mode */ 362 /* Bit 3: profile orientation (up/down) */ 363 /* Bit 4: is top profile? */ 364 /* Bit 5: is bottom profile? */ 509 FT_Bitmap target; /* description of target bit/pixmap */ 2766 PByte bit, bit2; local [all...] |
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-darwin.c | 201 (this is the last-one-out-turn-off-the-lights bit). 708 // Combine two 32-bit values into a 64-bit value 2493 uint32_t bit = attrdefs[g][i].attrBit; local [all...] |
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
bcmutils.h | 655 /* bit map related macros */ 661 extern void setbit(void *array, uint bit); 662 extern void clrbit(void *array, uint bit); 663 extern bool isset(const void *array, uint bit); 664 extern bool isclr(const void *array, uint bit); 733 /* bcm_format_flags() bit description structure */ 735 uint32 bit; member in struct:bcm_bit_desc 760 /* 128-bit xor: *dst = *src1 xor *src2. dst1, src1 and src2 may have any alignment */ 820 #define mboolset(mb, bit) ((mb) |= (bit)) /* set one bool * [all...] |
/packages/apps/Exchange/src/com/android/exchange/utility/ |
CalendarUtilities.java | 1113 int bit = 1; local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
bitvect.c | 54 #define ERRCODE_SIZE "bit vector size mismatch" 117 static N_word LSB = 1; /* = mask for least significant bit */ 118 static N_word MSB; /* = mask for most significant bit */ 126 /* global bit mask table for fast access (set by "BitVector_Boot"): */ 390 N_word BitVector_Size(N_int bits) /* bit vector size (# of words) */ 399 N_word BitVector_Mask(N_int bits) /* bit vector mask (unused bits) */ 702 N_word bit; local 715 bit = LSB; 720 value |= bit; 727 if (not (bit <<= 1) [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cmsccoll.c | 4447 int32_t i = 0, n, j, bit; local [all...] |
/external/chromium_org/v8/src/ |
jsregexp.cc | 1833 int bit; local [all...] |
/external/elfutils/0.153/src/ |
readelf.c | 7557 unsigned int bit = ((void *) i - data) * 8; local 8091 GElf_Xword bit = 1; local [all...] |
/external/icu/icu4c/source/test/cintltst/ |
cmsccoll.c | 3116 int32_t i = 0, n, j, bit; local [all...] |
/external/valgrind/main/VEX/switchback/ |
test_bzip2.c | 606 /* the buffer for bit stream creation */ 727 /* the buffer for bit stream reading */ 873 it is 32 bits on a 32-bit host and 64 bits on a 64-bit host, and so 6059 int bit; local [all...] |
/external/valgrind/main/exp-sgcheck/tests/ |
hackedbz2.c | 629 /* the buffer for bit stream creation */ 750 /* the buffer for bit stream reading */ 896 it is 32 bits on a 32-bit host and 64 bits on a 64-bit host, and so 6470 int bit; local [all...] |
/external/valgrind/main/memcheck/tests/ |
origin5-bz2.c | 622 /* the buffer for bit stream creation */ 743 /* the buffer for bit stream reading */ 889 it is 32 bits on a 32-bit host and 64 bits on a 64-bit host, and so 6465 int bit; local [all...] |
varinfo6.c | 660 /* the buffer for bit stream creation */ 781 /* the buffer for bit stream reading */ 927 it is 32 bits on a 32-bit host and 64 bits on a 64-bit host, and so 6500 int bit; local [all...] |
/external/valgrind/main/perf/ |
bz2.c | 622 /* the buffer for bit stream creation */ 743 /* the buffer for bit stream reading */ 889 it is 32 bits on a 32-bit host and 64 bits on a 64-bit host, and so 6462 int bit; local [all...] |
test_input_for_tinycc.c | 5728 int bit; local [all...] |