HomeSort by relevance Sort by last modified time
    Searched defs:bits (Results 451 - 475 of 1549) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/gold/
resolve.cc 155 // Bits 2-3: 0 for normal, 1 for undefined, 2 for common
178 unsigned int bits; local
184 bits = global_flag;
188 bits = weak_flag;
195 bits = global_flag;
201 bits = global_flag;
205 bits |= dynamic_flag;
207 bits |= regular_flag;
212 bits |= undef_flag;
217 bits |= common_flag
    [all...]
  /toolchain/binutils/binutils-2.27/include/opcode/
i370.h 42 /* The opcode itself. Those bits which will be filled in with
47 mask containing ones indicating those bits which must match the
48 opcode field, and zeroes indicating those bits which need not
142 /* The number of bits in the operand. */ member in struct:i370_operand
143 int bits;
152 i |= (op & ((1 << o->bits) - 1)) << o->shift;
171 op = ((i) >> o->shift) & ((1 << o->bits) - 1);
173 && (op & (1 << (o->bits - 1))) != 0)
174 op -= 1 << o->bits;
mn10300.h 33 /* The opcode itself. Those bits which will be filled in with
38 mask containing ones indicating those bits which must match the
39 opcode field, and zeroes indicating those bits which need not
76 /* The number of bits in the operand. */ member in struct:mn10300_operand
77 int bits;
s390.h 61 /* The opcode itself. Those bits which will be filled in with
66 mask containing ones indicating those bits which must match the
67 opcode field, and zeroes indicating those bits which need not
105 /* The number of bits in the operand. */
106 int bits; member in struct:s390_operand
  /toolchain/binutils/binutils-2.27/opcodes/
epiphany-asm.c 97 int bits = 0;
102 sign = 1; bits = 3; break;
104 sign = 1; bits = 11; break;
106 sign = 0; bits = 3; break;
109 sign = 0; bits = 11; break;
125 -((1L << bits) - 1), (1 << (bits - 1)) - 1);
127 errmsg = cgen_validate_unsigned_integer (*valuep, 0, (1L << bits) - 1);
96 int bits = 0; local
ia64-opc.c 202 ia64_insn bits = completer_table[completer_index].bits;
206 bits = bits << shiftamt;
207 opcode = (opcode & ~mask) | bits;
212 /* Extract BITS number of bits starting from OP_POINTER + BITOFFSET in
218 extract_op_bits (int op_pointer, int bitoffset, int bits)
229 int bata = (bits < numb) ? bits : numb
198 ia64_insn bits = completer_table[completer_index].bits; local
    [all...]
msp430-dis.c 969 unsigned short bits; local
1076 if (msp430dis_opcode_unsigned (addr + 2, info, &bits, comm1))
1078 n |= bits;
1114 if (msp430dis_opcode_unsigned (addr + 2, info, &bits, comm1))
1116 n |= bits;
1147 if (msp430dis_opcode_unsigned (addr + 2, info, &bits, comm2))
1149 reg |= bits;
1177 if (msp430dis_opcode_unsigned (addr + 2, info, &bits, comm1))
1179 n |= bits;
1232 sprintf (comm2, _("Warning: reserved use of A/L and B/W bits detected"))
    [all...]
z8kgen.c 33 char *bits; member in struct:op
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/blast/
blast.c 44 int bitcnt; /* number of bits in bit buffer */
46 /* input limit error return state for bits() and decode() */
58 * Return need bits from the input stream. This always leaves less than
59 * eight bits in the buffer. bits() works properly for need == 0.
63 * - Bits are stored in bytes from the least significant bit to the most
64 * significant bit. Therefore bits are dropped from the bottom of the bit
68 local int bits(struct state *s, int need) function
72 /* load at least need bits into val */
79 val |= (int)(*(s->in)++) << s->bitcnt; /* load eight bits */
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/infback9/
infback9.c 56 unsigned sym, bits, low, size; local
69 bits = 9;
70 inflate_table9(LENS, state.lens, 288, &(next), &(bits), state.work);
76 bits = 5;
77 inflate_table9(DISTS, state.lens, 32, &(next), &(bits), state.work);
94 printf("{%u,%u,%d}", lenfix[low].op, lenfix[low].bits,
105 printf("{%u,%u,%d}", distfix[low].op, distfix[low].bits,
120 bits = 0; \
143 hold += (unsigned long)(*next++) << bits; \
144 bits += 8;
234 unsigned bits; \/* bits in bit buffer *\/ local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/puff/
puff.c 19 * assumes that long's are at least 32 bits. puff.c uses the short data type,
20 * assumed to be 16 bits, for arrays in order to to conserve memory. The code
48 * are 16 bits
91 #define MAXBITS 15 /* maximum bits in a code */
109 int bitcnt; /* number of bits in bit buffer */
111 /* input limit error return state for bits() and decode() */
116 * Return need bits from the input stream. This always leaves less than
117 * eight bits in the buffer. bits() works properly for need == 0.
121 * - Bits are stored in bytes from the least significant bit to the mos
126 local int bits(struct state *s, int need) function
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/examples/
gun.c 117 the gzip trailer is stored modulo 2^32, so it's ok if a long is 32 bits and
168 /* throw out what's left in the current bits byte buffer (this is a vestigial
205 int left; /* bits left in rem */
206 unsigned rem; /* unused bits from input */
207 int bits; /* current bits per code */ local
209 unsigned mask; /* mask for current bits codes */
210 int max; /* maximum bits per code for this stream */
235 strm->msg = (char *)"lzw bits out of range";
243 bits = 9
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
inflate.c 30 * - Add comments on state->bits assertion in inffast.c
121 state->bits = 0;
166 /* set number of window bits, free window if different */
230 int ZEXPORT inflatePrime(strm, bits, value)
232 int bits;
239 if (bits < 0) {
241 state->bits = 0;
244 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR
271 unsigned sym, bits; local
614 unsigned bits; \/* bits in bit buffer *\/ local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/test/
infcover.c 277 inflate() on each call, or zero to feed it all, win is the window bits
620 unsigned bits; local
626 for (bits = 0; bits < 15; bits++)
627 lens[bits] = (unsigned short)(bits + 1);
630 bits = 15;
631 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
634 bits = 1
    [all...]
  /art/test/708-jit-cache-churn/src/
JitCacheChurnTest.java 137 int bits = i; local
138 bits = ((bits >>> 1) & 0x55555555) | ((bits << 1) & 0x55555555);
139 bits = ((bits >>> 2) & 0x33333333) | ((bits << 2) & 0x33333333);
140 bits = ((bits >>> 4) & 0x0f0f0f0f) | ((bits << 4) & 0x0f0f0f0f)
    [all...]
  /bootable/recovery/minui/
graphics.cpp 332 unsigned char* bits = static_cast<unsigned char*>(malloc(font.width * font.height)); local
333 gr_font->texture->data = bits;
338 memset(bits, (data & 0x80) ? 255 : 0, data & 0x7f);
339 bits += (data & 0x7f);
  /cts/tests/tests/util/src/android/util/cts/
HalfTest.java 522 public void bits() { method in class:HalfTest
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SystemUIModes.java 118 final int bits = WindowManager.LayoutParams.FLAG_FULLSCREEN; local
120 winParams.flags |= bits;
122 winParams.flags &= ~bits;
130 final int bits = WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN; local
132 winParams.flags |= bits;
134 winParams.flags &= ~bits;
142 final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS; local
144 winParams.flags |= bits;
146 winParams.flags &= ~bits;
154 final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION local
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/DS3231RealTimeClockLib/
DS3231RealTimeClock.h 52 }bits; member in union:__anon3765
64 }bits; member in union:__anon3767
73 }bits; member in union:__anon3769
81 }bits; member in union:__anon3771
90 }bits; member in union:__anon3773
99 }bits; member in union:__anon3775
108 }bits; member in union:__anon3777
119 }bits; member in union:__anon3779
127 }bits; member in union:__anon3781
137 }bits; member in union:__anon3783
145 }bits; member in union:__anon3785
154 }bits; member in union:__anon3787
163 }bits; member in union:__anon3789
174 }bits; member in union:__anon3791
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D03/Library/DS3231RealTimeClockLib/
DS3231RealTimeClock.h 52 }bits; member in union:__anon3994
64 }bits; member in union:__anon3996
73 }bits; member in union:__anon3998
81 }bits; member in union:__anon4000
90 }bits; member in union:__anon4002
99 }bits; member in union:__anon4004
108 }bits; member in union:__anon4006
119 }bits; member in union:__anon4008
127 }bits; member in union:__anon4010
137 }bits; member in union:__anon4012
145 }bits; member in union:__anon4014
154 }bits; member in union:__anon4016
163 }bits; member in union:__anon4018
174 }bits; member in union:__anon4020
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inflate.h 32 TYPE, /* i: waiting for type bits, including last-flag bit */
42 LENEXT, /* i: waiting for length extra bits */
44 DISTEXT, /* i: waiting for distance extra bits */
99 unsigned bits; /* number of bits in "in" */ member in struct:inflate_state
104 unsigned extra; /* extra bits needed */
108 unsigned lenbits; /* index bits for lencode */
109 unsigned distbits; /* index bits for distcode */
120 int back; /* bits back of last unprocessed length/lit */
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inflate.h 32 TYPE, /* i: waiting for type bits, including last-flag bit */
42 LENEXT, /* i: waiting for length extra bits */
44 DISTEXT, /* i: waiting for distance extra bits */
102 unsigned bits; /* number of bits in "in" */ member in struct:inflate_state
107 unsigned extra; /* extra bits needed */
111 unsigned lenbits; /* index bits for lencode */
112 unsigned distbits; /* index bits for distcode */
123 int back; /* bits back of last unprocessed length/lit */
  /external/ImageMagick/MagickCore/
quantum-private.h 36 bits; member in struct:_QuantumState
133 Exponent width: 5 bits
664 Exponent width: 5 bits
  /external/ImageMagick/coders/
pcd.c 122 bits-=n; \
123 while (bits <= 24) \
130 sum|=((unsigned int) (*p) << (24-bits)); \
131 bits+=8; \
164 bits,
193 bits=32;
161 bits, local
    [all...]
pdb.c 42 % * fixed bug in reader - only bits 0..2 indicate compression type
169 % o pixels: The address of a byte (8 bits) array of pixel data created by
717 bits;
850 bits=8/(int) bits_per_pixel-1; /* start at most significant bits */
866 (8-bits_per_pixel) << bits*bits_per_pixel;
867 bits--;
868 if (bits < 0)
905 bits=8/(int) bits_per_pixel-1;
709 bits; local

Completed in 1260 milliseconds

<<11121314151617181920>>