HomeSort by relevance Sort by last modified time
    Searched defs:next_byte (Results 1 - 3 of 3) sorted by null

  /external/libavc/encoder/
ih264e_cabac.c 752 WORD32 next_byte; local
766 next_byte = (u4_bins >> (num_bins)) & 0xff;
768 /* L = (L << 8) + (R * next_byte) */
770 ps_cab_enc_env->u4_code_int_low += (next_byte * u4_range);
781 next_byte = (u4_bins & ((1 << num_bins) - 1));
784 ps_cab_enc_env->u4_code_int_low += (next_byte * u4_range);
  /external/v8/src/
value-serializer.cc 197 uint8_t* next_byte = &stack_buffer[0]; local
199 *next_byte = (value & 0x7f) | 0x80;
200 next_byte++;
203 *(next_byte - 1) &= 0x7f;
204 WriteRawBytes(stack_buffer, next_byte - stack_buffer);
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
ieee.c 174 #define next_byte(ieee) ((ieee)->input_p++)
353 next_byte (ieee);
361 next_byte (ieee);
534 next_byte (&(ieee->h));
543 next_byte (&(ieee->h));
549 next_byte (&(ieee->h));
554 next_byte (&(ieee->h));
564 next_byte (&(ieee->h));
576 next_byte (&(ieee->h));
589 next_byte (&(ieee->h))
173 #define next_byte macro
    [all...]

Completed in 94 milliseconds