Searched refs:bit (Results 276 - 300 of 852) sorted by relevance

<<11121314151617181920>>

/external/icu/icu4c/source/test/letest/
H A DPortableFontInstance.cpp40 // Finds the high bit by binary searching
49 le_uint8 bit = 0; local
53 bit += 16;
58 bit += 8;
63 bit += 4;
68 bit += 2;
73 bit += 1;
76 return bit;
/external/icu/icu4c/source/test/perf/leperf/
H A DPortableFontInstance.cpp40 // Finds the high bit by binary searching
49 le_uint8 bit = 0; local
53 bit += 16;
58 bit += 8;
63 bit += 4;
68 bit += 2;
73 bit += 1;
76 return bit;
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.cpp202 const uint64 bit = 1LL << (size * 7); local
204 if (value > (bit - 2))
207 value |= bit;
210 int64 bit; local
213 bit = 1LL << (size * 7);
214 const uint64 max = bit - 2;
225 value |= bit;
345 // is a signed, 16-bit integer). However, as a simplification we
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_state_upload.c320 uint32_t bit; member in struct:dirty_bit_map
410 if (bit_map[i].bit == 0)
413 if (bit_map[i].bit & bits)
424 if (bit_map[i].bit == 0)
428 bit_map[i].bit, bit_map[i].count, bit_map[i].name);
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java52 final int bit = IAccessFlags.ALL_ACC [f];
54 if ((flags & bit) != 0)
61 if (bit == IAccessFlags.ACC_SUPER)
72 final int bit = IAccessFlags.ALL_ACC [f];
74 if ((flags & bit) != 0)
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_upload.c320 uint32_t bit; member in struct:dirty_bit_map
410 if (bit_map[i].bit == 0)
413 if (bit_map[i].bit & bits)
424 if (bit_map[i].bit == 0)
428 bit_map[i].bit, bit_map[i].count, bit_map[i].name);
/external/tremolo/Tremolo/
H A Dcodebook.c98 /* 32 bit float (not IEEE; nonnormalized mantissa +
167 int bit=(entry>>(length-j-1))&1; local
174 if (chase < 0 || chase >= n || chase*2+bit > n*2+1) return 1;
175 if(!r[chase*2+bit])
176 r[chase*2+bit]=top;
177 chase=r[chase*2+bit];
181 int bit=(entry>>(length-j-1))&1; local
186 r[chase*2+bit]= decpack(i,count++,quantvals,b,opb,maptype) |
226 * This probably wastes a bit of space, but it shouldn't
483 /* this is the correct boundary here; we lose one bit t
665 int bit=(lok>>i)&1; local
695 int bit=(lok>>i)&1; local
[all...]
/external/qemu/hw/android/goldfish/
H A Devents_device.c337 events_set_bit(events_state* s, int type, int bit) argument
339 events_set_bits(s, type, bit, bit);
343 events_clr_bit(events_state* s, int type, int bit) argument
345 int ii = bit / 8;
348 uint8_t mask = 0x01U << (bit & 7);
467 * of (min,max,fuzz,flat) 32-bit values.
/external/aac/libFDK/include/
H A Dfixmul.h20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
257 #error Fallback for fixpow2div2_D is not 16 bit safe !
266 #error Fallback for fixpow2_D is not 16 bit safe !
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DWalkingIterator.java95 int bit = walker.getAnalysisBits();
96 bits |= bit;
/external/chromium_org/chrome/installer/tools/
H A Dvalidate_installation_main.cc128 int bit; member in struct:__anon5741::ProductData
151 if ((type & product_data.bit) != 0) {
/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Dwnaf.c162 int bit, next_bit, mask; local
182 bit = 1 << w; /* at most 128 */
183 next_bit = bit << 1; /* at most 256 */
217 if (window_val & bit) {
234 if (digit <= -bit || digit >= bit || !(digit & 1)) {
244 if (window_val != 0 && window_val != next_bit && window_val != bit) {
253 window_val += bit * BN_is_bit_set(scalar, j + w);
362 * (NB: maximum wNAF length is bit length plus one) */
722 * one point per bit
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dglxextensions.h240 unsigned bit);
255 unsigned bit);
/external/chromium_org/third_party/skia/tests/
H A DPathUtilsTest.cpp27 int bit = x & 7; local
29 return buffer[byte] & (128 >> bit);
38 bool bit = get_bit(&bits[y], x)!=0;
39 std::cout << bit;
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dvector_scaling_operations_neon.S13 @ optimized for ARM Neon platform. Output is bit-exact with the reference
54 vmovn.i32 d0, q0 @ Cast to 16 bit values.
/external/chromium_org/tools/usb_gadget/
H A Dhid_descriptors.py86 for bit, is_set in properties:
88 value |= 1 << bit
/external/chromium_org/v8/test/cctest/
H A Dtrace-extension.cc63 CHECK_EQ(2, args.Length()); // Ignore second argument on 32-bit platform.
71 #error Host architecture is neither 32-bit nor 64-bit.
/external/iproute2/tc/
H A Demp_ematch.l68 %option 8bit stack warn noyywrap prefix="ematch_"
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoy.ml32 (* Do simple "peephole" optimizations and bit-twiddling optzn. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoy.ml32 (* Do simple "peephole" optimizations and bit-twiddling optzn. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoy.ml32 (* Do simple "peephole" optimizations and bit-twiddling optzn. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoy.ml36 (* Do simple "peephole" optimizations and bit-twiddling optzn. *)
/external/llvm/test/CodeGen/PowerPC/
H A Dhello-reloc.s60 ; DARWIN-G4-DUMP:Format: Mach-O 32-bit ppc
62 ; DARWIN-G4-DUMP:AddressSize: 32bit
/external/mesa3d/src/glx/
H A Dglxextensions.h240 unsigned bit);
255 unsigned bit);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
H A DCAVLCReader.java136 int bit = read1Bit();
137 bt = bt.down(bit);

Completed in 2632 milliseconds

<<11121314151617181920>>