HomeSort by relevance Sort by last modified time
    Searched defs:bit (Results 51 - 75 of 258) sorted by null

1 23 4 5 6 7 8 91011

  /external/chromium_org/third_party/libwebp/enc/
token.c 12 // A 'token' is a bit value associated with a probability, either fixed
36 uint16_t tokens_[MAX_NUM_TOKEN]; // bit#15: bit
37 // bit #14: constant proba or idx
84 int bit, uint32_t proba_idx) {
86 assert(bit == 0 || bit == 1);
89 b->tokens_[slot] = (bit << 15) | proba_idx;
91 return bit;
95 int bit, int proba)
227 const int bit = (token >> 15) & 1; local
    [all...]
  /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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_bitmask.c 163 unsigned bit; local
170 bit = bm->filled % UTIL_BITMASK_BITS_PER_WORD;
171 mask = 1 << bit;
173 while(bit < UTIL_BITMASK_BITS_PER_WORD) {
177 ++bit;
181 bit = 0;
202 unsigned bit; local
212 bit = index % UTIL_BITMASK_BITS_PER_WORD;
213 mask = 1 << bit;
228 unsigned bit; local
251 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local
278 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_fpc_emit.c 36 int bit = ffs(~p->temp_flag); local
37 if (!bit) {
42 p->temp_flag |= 1 << (bit - 1);
43 return bit - 1;
61 int bit = ffs(~p->utemp_flag); local
62 if (!bit) {
67 p->utemp_flag |= 1 << (bit - 1);
68 return UREG(REG_TYPE_U, (bit - 1));
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aalinetemp.h 196 const GLuint bit = (swrast->StippleCounter / ctx->Line.StippleFactor) & 0xf; local
197 if ((1 << bit) & ctx->Line.StipplePattern) {
198 /* stipple bit is on */
211 /* stipple bit is off */
s_lines.c 47 GLuint bit = (swrast->StippleCounter / ctx->Line.StippleFactor) & 0xf; local
48 if ((1 << bit) & ctx->Line.StipplePattern) {
  /external/chromium_org/third_party/opus/src/silk/
encode_pulses.c 67 opus_int i, k, j, iter, bit, nLS, scale_down, RateLevelIndex = 0; local
186 bit = silk_RSHIFT( abs_q, j ) & 1;
187 ec_enc_icdf( psRangeEnc, bit, silk_lsb_iCDF, 8 );
189 bit = abs_q & 1;
190 ec_enc_icdf( psRangeEnc, bit, silk_lsb_iCDF, 8 );
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.cpp 108 int bit = 1 << index; local
109 fIsCoincident[0] |= bit;
110 fIsCoincident[1] |= bit;
  /external/dexmaker/src/dx/java/com/android/dx/util/
Bits.java 20 * Utilities for treating {@code int[]}s as bit sets.
31 * Constructs a bit set to contain bits up to the given index (exclusive).
33 * @param max {@code >= 0;} the maximum bit index (exclusive)
42 * Gets the maximum index (exclusive) for the given bit set.
44 * @param bits {@code non-null;} bit set in question
52 * Gets the value of the bit at the given index.
54 * @param bits {@code non-null;} bit set to operate on
55 * @param idx {@code >= 0, < getMax(set);} which bit
56 * @return the value of the indicated bit
60 int bit = 1 << (idx & 0x1f) local
73 int bit = 1 << (idx & 0x1f); local
90 int bit = 1 << (idx & 0x1f); local
102 int bit = 1 << (idx & 0x1f); local
    [all...]
  /external/elfutils/libcpu/
i386_parse.h 77 struct bitvalue *bit; member in union:YYSTYPE
  /external/harfbuzz_ng/src/hb-icu-le/
cmaps.cpp 18 // Finds the high bit by binary searching
23 le_uint8 bit = 0; local
27 bit += 16;
32 bit += 8;
37 bit += 4;
42 bit += 2;
47 bit += 1;
50 return bit;
167 le_uint8 bit = highBit(nGroups); local
168 fPower = 1 << bit;
    [all...]
  /external/icu4c/extra/scrptrun/
scrptrun.cpp 53 int8_t bit = 0; local
57 bit += 16;
62 bit += 8;
67 bit += 4;
72 bit += 2;
77 bit += 1;
80 return bit;
  /external/icu4c/samples/layout/
cmaps.cpp 24 // Finds the high bit by binary searching
29 le_uint8 bit = 0; local
33 bit += 16;
38 bit += 8;
43 bit += 4;
48 bit += 2;
53 bit += 1;
56 return bit;
173 le_uint8 bit = highBit(nGroups); local
174 fPower = 1 << bit;
    [all...]
  /external/icu4c/test/letest/
cmaps.cpp 18 // Finds the high bit by binary searching
23 le_uint8 bit = 0; local
27 bit += 16;
32 bit += 8;
37 bit += 4;
42 bit += 2;
47 bit += 1;
50 return bit;
167 le_uint8 bit = highBit(nGroups); local
168 fPower = 1 << bit;
    [all...]
  /external/libsepol/src/
genusers.c 41 unsigned lineno = 0, islist = 0, bit; local
170 ebitmap_for_each_bit(&roldatum->dominates, rnode, bit) {
171 if (ebitmap_node_get_bit(rnode, bit))
173 (&usrdatum->roles.roles, bit, 1)) {
  /external/libvpx/libvpx/vp8/decoder/
dboolhuff.h 60 unsigned int bit = 0; local
83 bit = 1;
96 return bit;
102 int bit; local
104 for (bit = bits - 1; bit >= 0; bit--)
106 z |= (vp8dx_decode_bool(br, 0x80) << bit);
  /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/mesa3d/src/gallium/auxiliary/util/
u_bitmask.c 163 unsigned bit; local
170 bit = bm->filled % UTIL_BITMASK_BITS_PER_WORD;
171 mask = 1 << bit;
173 while(bit < UTIL_BITMASK_BITS_PER_WORD) {
177 ++bit;
181 bit = 0;
202 unsigned bit; local
212 bit = index % UTIL_BITMASK_BITS_PER_WORD;
213 mask = 1 << bit;
228 unsigned bit; local
251 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local
278 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_emit.c 36 int bit = ffs(~p->temp_flag); local
37 if (!bit) {
42 p->temp_flag |= 1 << (bit - 1);
43 return bit - 1;
61 int bit = ffs(~p->utemp_flag); local
62 if (!bit) {
67 p->utemp_flag |= 1 << (bit - 1);
68 return UREG(REG_TYPE_U, (bit - 1));
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 196 const GLuint bit = (swrast->StippleCounter / ctx->Line.StippleFactor) & 0xf; local
197 if ((1 << bit) & ctx->Line.StipplePattern) {
198 /* stipple bit is on */
211 /* stipple bit is off */
s_lines.c 47 GLuint bit = (swrast->StippleCounter / ctx->Line.StippleFactor) & 0xf; local
48 if ((1 << bit) & ctx->Line.StipplePattern) {
  /external/qemu/distrib/sdl-1.2.15/src/cpuinfo/
SDL_cpuinfo.c 64 " xorl $0x200000,%%eax # Flip ID bit in EFLAGS \n"
69 " xorl %%ecx,%%eax # Can not toggle ID bit, \n"
84 " xorl $0x200000,%%eax # Flip ID bit in EFLAGS \n"
89 " xorl %%ecx,%%eax # Can not toggle ID bit, \n"
102 xor eax, 200000h ; Flip ID bit in EFLAGS
107 xor eax, ecx ; Can not toggle ID bit, local
  /external/skia/src/pathops/
SkIntersections.cpp 108 int bit = 1 << index; local
109 fIsCoincident[0] |= bit;
110 fIsCoincident[1] |= bit;
  /external/skia/tests/
PathUtilsTest.cpp 29 int bit = x & 7; local
31 return buffer[byte] & (128 >> bit);
40 bool bit = get_bit(&bits[y], x)!=0;
41 std::cout << bit;
  /external/webp/src/enc/
token.c 12 // A 'token' is a bit value associated with a probability, either fixed
36 uint16_t tokens_[MAX_NUM_TOKEN]; // bit#15: bit
37 // bit #14: constant proba or idx
84 int bit, uint32_t proba_idx) {
86 assert(bit == 0 || bit == 1);
89 b->tokens_[slot] = (bit << 15) | proba_idx;
91 return bit;
95 int bit, int proba)
227 const int bit = (token >> 15) & 1; local
    [all...]

Completed in 2797 milliseconds

1 23 4 5 6 7 8 91011