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

  /external/chromium/third_party/libjingle/source/talk/base/
stringencode.cc 243 // Accumulate the trailer byte values in value16, and combine it with the
245 unsigned long value16 = (s[1] & 0x3F);
247 *value = ((s[0] & 0x1F) << 6) | value16;
253 value16 = (value16 << 6) | (s[2] & 0x3F);
255 *value = ((s[0] & 0x0F) << 12) | value16;
261 value16 = (value16 << 6) | (s[3] & 0x3F);
263 *value = ((s[0] & 0x07) << 18) | value16;
  /frameworks/base/media/libeffects/testlibs/
EffectReverb.c 1028 int16_t value16; local
    [all...]
  /external/llvm/lib/Target/CellSPU/
SPUAsmPrinter.cpp 155 int16_t value16 = int16_t(value);
156 assert((value16 >= -(1 << (9+4)) && value16 <= (1 << (9+4)) - 1)
158 O << (value16 & ~0xf) << "(";

Completed in 182 milliseconds