HomeSort by relevance Sort by last modified time
    Searched refs:value16 (Results 1 - 7 of 7) 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 1039 int16_t value16; local
    [all...]
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.c 723 int16_t value16; local
724 ALOGV("Downmix_setParameter, context %p, param %" PRId32 ", value16 %" PRId16 ", value32 %" PRId32,
735 value16 = *(int16_t *)pValue;
736 ALOGV("set DOWNMIX_PARAM_TYPE, type %" PRId16, value16);
737 if (!((value16 > DOWNMIX_TYPE_INVALID) && (value16 <= DOWNMIX_TYPE_LAST))) {
738 ALOGE("Downmix_setParameter invalid DOWNMIX_PARAM_TYPE value %" PRId16, value16);
741 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 150 uint16_t value16 = value; local
152 memcpy(&data[1], &value16, 2);

Completed in 504 milliseconds