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

  /prebuilts/misc/windows/sdl2/test/
testplatform.c 72 Uint16 value16 = 0xCDAB; local
102 SDL_Log("Value 16 = 0x%X, swapped = 0x%X\n", value16,
103 SDL_Swap16(value16));
105 if (SDL_Swap16(value16) != swapped16) {
testautomation_platform.c 58 Uint16 value16 = 0xCDAB; local
84 SDLTest_AssertCheck( SDL_Swap16(value16) == swapped16,
86 value16, SDL_Swap16(value16) ); local
  /external/webrtc/webrtc/base/
stringencode.cc 206 // Accumulate the trailer byte values in value16, and combine it with the
208 unsigned long value16 = (s[1] & 0x3F); local
210 *value = ((s[0] & 0x1F) << 6) | value16;
216 value16 = (value16 << 6) | (s[2] & 0x3F);
218 *value = ((s[0] & 0x0F) << 12) | value16;
224 value16 = (value16 << 6) | (s[3] & 0x3F);
226 *value = ((s[0] & 0x07) << 18) | value16;
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.c 1042 int16_t value16; local
    [all...]
  /system/core/libunwindstack/
DwarfMemory.cpp 201 uint16_t value16; local
202 if (!ReadBytes(&value16, 2)) {
205 *value = value16;
  /external/swiftshader/third_party/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) << "(";
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.c 845 int16_t value16; local
846 ALOGV("Downmix_setParameter, context %p, param %" PRId32 ", value16 %" PRId16 ", value32 %" PRId32,
857 value16 = *(int16_t *)pValue;
858 ALOGV("set DOWNMIX_PARAM_TYPE, type %" PRId16, value16);
859 if (!((value16 > DOWNMIX_TYPE_INVALID) && (value16 <= DOWNMIX_TYPE_LAST))) {
860 ALOGE("Downmix_setParameter invalid DOWNMIX_PARAM_TYPE value %" PRId16, value16);
863 pDownmixer->type = (downmix_type_t) value16;
    [all...]
  /external/libbrillo/brillo/dbus/
exported_property_set_unittest.cc 265 uint16_t value16; local
268 ASSERT_TRUE(entry_reader.PopVariantOfUint16(&value16));
281 ASSERT_TRUE(entry_reader.PopVariantOfUint16(&value16));
  /external/skia/src/core/
SkStream.cpp 126 uint16_t value16 = value; local
128 memcpy(&data[1], &value16, 2);
  /frameworks/base/tools/aapt2/
ResourceParser.cpp 1054 std::u16string value16 = util::Utf8ToUtf16(maybe_value.value()); local
    [all...]

Completed in 199 milliseconds