HomeSort by relevance Sort by last modified time
    Searched refs:bit (Results 326 - 350 of 1204) sorted by null

<<11121314151617181920>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
IntArray.java 12 * This expands 8 bit indices into 16 bit contents, by inserting 0s between bits.
13 * In a binary field, this operation is the same as squaring an 8 bit number.
95 // First byte is 0 to enforce highest (=sign) bit is zero.
386 public void flipWord(int bit, int word)
389 int n = bit >>> 5;
392 int shift = bit & 0x1F;
408 public int getWord(int bit)
411 int n = bit >>> 5;
416 int shift = bit & 0x1F
651 int bit = i - m; local
671 int bit = i - m; local
    [all...]
  /external/chromium_org/third_party/skia/tests/
DeviceLooperTest.cpp 82 int bit = 1; local
85 if (mask & bit) {
90 bit <<= 1;
  /external/chromium_org/ui/events/ozone/evdev/
event_device_info.cc 35 bool BitIsSet(const unsigned long* bits, unsigned int bit) {
36 return (bits[bit / EVDEV_LONG_BITS] & (1UL << (bit % EVDEV_LONG_BITS)));
  /external/chromium_org/v8/test/cctest/
test-assembler-arm.cc 167 __ stm(db_w, sp, r4.bit() | fp.bit() | lr.bit());
181 __ ldm(ia_w, sp, r4.bit() | fp.bit() | pc.bit());
237 __ stm(db_w, sp, r4.bit() | fp.bit() | lr.bit());
304 __ ldm(ia_w, sp, r4.bit() | fp.bit() | pc.bit())
    [all...]
  /external/deqp/framework/referencerenderer/
rrRasterizer.hpp 42 //! Get coverage bit value.
60 //! Set bit in coverage mask.
63 const deUint64 bit = getCoverageBit(numSamples, x, y, sampleNdx); local
64 return val ? (mask | bit) : (mask & ~bit);
67 //! Get coverage bit value in mask.
79 //! Get position of first coverage bit of fragment - equivalent to deClz64(getCoverageFragmentSampleBits(numSamples, x, y)).
  /external/libvorbis/doc/
03-codebook.tex 32 relating to non-eight-bit bytes.
36 A codebook begins with a 24 bit sync pattern, 0x564342:
44 16 bit \varname{[codebook_dimensions]} and 24 bit \varname{[codebook_entries]} fields:
49 byte 4: [ X X X X X X X X ] [codebook_dimensions] (16 bit unsigned)
53 byte 7: [ X X X X X X X X ] [codebook_entries] (24 bit unsigned)
57 Next is the \varname{[ordered]} bit flag:
61 byte 8: [ X ] [ordered] (1 bit)
77 The decoder first reads one additional bit flag, the
83 byte 8: [ X 1 ] [sparse] flag (1 bit)
    [all...]
  /external/skia/tests/
DeviceLooperTest.cpp 82 int bit = 1; local
85 if (mask & bit) {
90 bit <<= 1;
  /build/target/board/generic_arm64/
BoardConfig.mk 32 # This architecture / CPU variant must NOT be used for any 64 bit
34 # to build an unbundled application or cts for all supported 32 and 64 bit
37 # If you're building a 64 bit platform (and not an application) the
  /external/chromium_org/third_party/libwebp/utils/
bit_writer.c 10 // Bit writing and boolean coder
36 // If the following line wraps over 32bit, the test just after will catch it.
108 int VP8PutBit(VP8BitWriter* const bw, int bit, int prob) {
110 if (bit) {
123 return bit;
126 int VP8PutBitUniform(VP8BitWriter* const bw, int bit) {
128 if (bit) {
140 return bit;
260 // Special case of overflow handling for 32bit accumulator (2-steps flush).
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglcontext.c 43 * Return the API bit (one of EGL_xxx_BIT) of the context.
48 EGLint bit = 0; local
54 bit = EGL_OPENGL_ES_BIT;
58 bit = EGL_OPENGL_ES2_BIT;
65 bit = EGL_OPENVG_BIT;
68 bit = EGL_OPENGL_BIT;
74 return bit;
  /external/llvm/test/MC/PowerPC/
ppc64-errors.s 27 # Signed 16-bit immediate operands
37 # Unsigned 16-bit immediate operands
47 # Signed 16-bit immediate operands (extended range for addis)
  /external/mesa3d/src/egl/main/
eglcontext.c 43 * Return the API bit (one of EGL_xxx_BIT) of the context.
48 EGLint bit = 0; local
54 bit = EGL_OPENGL_ES_BIT;
58 bit = EGL_OPENGL_ES2_BIT;
65 bit = EGL_OPENVG_BIT;
68 bit = EGL_OPENGL_BIT;
74 return bit;
  /external/webp/src/utils/
bit_writer.c 10 // Bit writing and boolean coder
36 // If the following line wraps over 32bit, the test just after will catch it.
108 int VP8PutBit(VP8BitWriter* const bw, int bit, int prob) {
110 if (bit) {
123 return bit;
126 int VP8PutBitUniform(VP8BitWriter* const bw, int bit) {
128 if (bit) {
140 return bit;
260 // Special case of overflow handling for 32bit accumulator (2-steps flush).
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
ctype.h 38 endian). We define the bit value interpretations here dependent on the
43 # define _ISbit(bit) (1 << (bit))
45 # define _ISbit(bit) ((bit) < 8 ? ((1 << (bit)) << 8) : ((1 << (bit)) >> 8))
91 #define __isascii(c) (((c) & ~0x7f) == 0) /* If C is a 7 bit value. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
ctype.h 38 endian). We define the bit value interpretations here dependent on the
43 # define _ISbit(bit) (1 << (bit))
45 # define _ISbit(bit) ((bit) < 8 ? ((1 << (bit)) << 8) : ((1 << (bit)) >> 8))
91 #define __isascii(c) (((c) & ~0x7f) == 0) /* If C is a 7 bit value. */
  /bionic/libc/arch-arm/
arm.mk 3 # These are used by the 32-bit targets, but not the 64-bit ones.
10 # These are shared by all the 32-bit targets, but not the 64-bit ones.
  /device/generic/x86_64/
BoardConfig.mk 22 # Disable emulator for "make dist" until there is a 64-bit qemu kernel
  /device/htc/flounder/
aosp_flounder32.mk 19 PRODUCT_MODEL := 32-bit AOSP on Flounder
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
BitSet.java 46 * call a method n times to test the ith bit...ack!
205 for (int bit = BITS - 1; bit >= 0; bit--) {
206 if ((word & (1L << bit)) != 0) {
253 * @param bit element that must fit in set
255 public void growToInclude(int bit) {
256 int newSize = Math.max(bits.length << 1, numWordsToHold(bit));
473 /** Transform a bit set into a string by formatting each element as an integer
532 * Dump a comma-separated list of the words making up the bit set
    [all...]
  /external/chromium_org/
Android.mk 55 # If the host is declared as being 64-bit, set the host multilib variables
62 else # Target is 32-bit.
82 # If the host is declared as being 64-bit, set the host multilib variables
89 else # Second target is 32-bit.
  /external/chromium_org/third_party/skia/src/utils/
SkPathUtils.cpp 34 int bit = x & 7; local
36 return buffer[byte] & (128 >> bit);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect1.asm 21 ; 32-bit ring-0 protected mode code that interacts
  /external/chromium_org/tools/perf/page_sets/tough_animation_cases/resources/
perftesthelper.js 15 // Robert Jenkins' 32 bit integer hash function.
  /external/chromium_org/v8/test/mjsunit/
nans.js 42 // NaN with signal bit set
57 // NaN with signal bit cleared
72 // NaN with signal bit set
87 // NaN with signal bit cleared
  /external/clang/test/Analysis/
reference.cpp 237 bool bit : 1;
240 bar(bit); // don't crash

Completed in 1117 milliseconds

<<11121314151617181920>>