HomeSort by relevance Sort by last modified time
    Searched refs:value32 (Results 1 - 25 of 32) sorted by null

1 2

  /external/webrtc/webrtc/common_audio/signal_processing/include/
spl_inl_mips.h 20 int32_t value32 = 0; local
33 "mul %[value32], %[a1], %[b1] \n\t"
34 : [value32] "=r" (value32), [a1] "=&r" (a1), [b1] "=&r" (b1)
38 return value32;
43 int32_t value32 = 0, b1 = 0, b2 = 0; local
56 "mul %[value32], %[a1], %[b1] \n\t"
60 "addu %[value32], %[value32], %[b2] \n\t"
61 : [value32] "=&r" (value32), [b1] "=&r" (b1), [b2] "=&r" (b2)
82 int32_t value32 = 0; local
105 int32_t value32; local
    [all...]
spl_inl.h 27 static __inline int16_t WebRtcSpl_SatW32ToW16(int32_t value32) {
28 int16_t out16 = (int16_t) value32;
30 if (value32 > 32767)
32 else if (value32 < -32768)
spl_inl_armv7.h 128 static __inline int16_t WebRtcSpl_SatW32ToW16(int32_t value32) {
131 __asm __volatile ("ssat %0, #16, %1" : "=r"(out) : "r"(value32));
  /external/webrtc/webrtc/common_audio/signal_processing/
vector_scaling_operations_mips.c 31 int value32 = 0; local
43 "extrv_r.w %[value32], $ac0, %[right_shifts] \n\t"
46 "sh %[value32], 0(%[out]) \n\t"
48 : [value32] "=&r" (value32), [out] "+r" (out), [in1] "+r" (in1),
  /prebuilts/misc/windows/sdl2/test/
testplatform.c 74 Uint32 value32 = 0xEFBEADDE; local
112 SDL_Log("Value 32 = 0x%X, swapped = 0x%X\n", value32,
113 SDL_Swap32(value32));
115 if (SDL_Swap32(value32) != swapped32) {
testautomation_platform.c 60 Uint32 value32 = 0xEFBEADDE; local
89 SDLTest_AssertCheck( SDL_Swap32(value32) == swapped32,
91 value32, SDL_Swap32(value32) ); local
  /system/core/libcutils/arch-mips/
android_memset.c 52 uint32_t value32 = (((uint32_t)value) << 16) | ((uint32_t)value); local
53 android_memset32((uint32_t*) dst, value32, size<<1);
  /frameworks/base/tools/incident_report/
generic_message.h 48 uint32_t value32; member in union:GenericMessage::Node::__anon45984
generic_message.cpp 32 node.value32 = value;
main.cpp 89 uint32 value32; local
125 if (in->ReadLittleEndian32(&value32)) {
126 message->addInt32(fieldId, value32);
151 out->printf("%u", node.value32);
154 out->printf("%d", node.value32);
157 out->printf("%f", *(float*)&node.value32);
160 out->printf("(unexpected type %d: value32 %d (0x%x)",
161 type, node.value32, node.value32);
  /art/test/454-get-vreg/
get_vreg_jni.cc 95 uint32_t value32 = 0; local
96 CHECK(GetVReg(m, 6, kReferenceVReg, &value32));
97 CHECK_EQ(reinterpret_cast<mirror::Object*>(value32), this_value_);
  /system/core/libunwindstack/
DwarfMemory.cpp 213 uint32_t value32; local
214 if (!ReadBytes(&value32, 4)) {
217 *value = value32;
DwarfSection.cpp 494 uint32_t value32; local
495 if (!memory_.ReadBytes(&value32, sizeof(value32))) {
500 if (value32 == cie32_value_) {
508 fde->cie_offset = GetCieOffsetFromFde32(value32);
775 uint32_t value32; local
776 if (!memory_.ReadBytes(&value32, sizeof(value32))) {
783 if (value32 == static_cast<uint32_t>(-1)) {
820 next_entry_offset = memory_.cur_offset() + value32;
    [all...]
  /external/libvncserver/libvncserver/
auth.c 261 uint32_t value32; local
264 value32 = Swap32IfLE(securityType);
265 if (rfbWriteExact(cl, (char *)&value32, 4) < 0) {
  /external/lz4/programs/
lz4io.c 303 static void LZ4IO_writeLE32 (void* p, unsigned value32)
306 dstPtr[0] = (unsigned char)value32;
307 dstPtr[1] = (unsigned char)(value32 >> 8);
308 dstPtr[2] = (unsigned char)(value32 >> 16);
309 dstPtr[3] = (unsigned char)(value32 >> 24);
610 unsigned value32 = srcPtr[0]; local
611 value32 += (srcPtr[1]<<8);
612 value32 += (srcPtr[2]<<16);
613 value32 += ((unsigned)srcPtr[3])<<24;
614 return value32;
    [all...]
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.c 1041 int32_t value32; local
    [all...]
  /external/lz4/lib/
lz4frame.c 98 U32 value32 = srcPtr[0]; local
99 value32 += (srcPtr[1]<<8);
100 value32 += (srcPtr[2]<<16);
101 value32 += ((U32)srcPtr[3])<<24;
102 return value32;
105 static void LZ4F_writeLE32 (void* dst, U32 value32)
108 dstPtr[0] = (BYTE)value32;
109 dstPtr[1] = (BYTE)(value32 >> 8);
110 dstPtr[2] = (BYTE)(value32 >> 16);
111 dstPtr[3] = (BYTE)(value32 >> 24)
    [all...]
  /external/lz4/tests/
frametest.c 50 static void FUZ_writeLE32 (void* dstVoidPtr, U32 value32)
53 dstPtr[0] = (BYTE)value32;
54 dstPtr[1] = (BYTE)(value32 >> 8);
55 dstPtr[2] = (BYTE)(value32 >> 16);
56 dstPtr[3] = (BYTE)(value32 >> 24);
    [all...]
  /external/v8/src/builtins/
builtins-math.cc 308 Node* value32 = TruncateFloat64ToFloat32(x_value); local
309 Node* value = ChangeFloat32ToFloat64(value32);
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/vkjson/
vkjson.cc 500 uint32_t value32 = 0; local
501 AsValue(json_value, &value32);
502 if (value32 > std::numeric_limits<uint8_t>::max())
504 *value = static_cast<uint8_t>(value32);
  /external/vulkan-validation-layers/libs/vkjson/
vkjson.cc 944 uint32_t value32 = 0; local
    [all...]
  /frameworks/native/vulkan/vkjson/
vkjson.cc 936 uint32_t value32 = 0; local
    [all...]
  /external/libbrillo/brillo/dbus/
exported_property_set_unittest.cc 266 int32_t value32; local
273 ASSERT_TRUE(entry_reader.PopVariantOfInt32(&value32));
276 ASSERT_TRUE(entry_reader.PopVariantOfInt32(&value32));
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_ff.c 74 uint32_t value32[6]; member in union:nine_ff_vs_key::__anon30206
123 uint32_t value32[12]; member in union:nine_ff_ps_key::__anon30208
131 uint32_t hash = vs->value32[0];
132 for (i = 1; i < ARRAY_SIZE(vs->value32); ++i)
133 hash ^= vs->value32[i];
147 uint32_t hash = ps->value32[0];
148 for (i = 1; i < ARRAY_SIZE(ps->value32); ++i)
149 hash ^= ps->value32[i];
    [all...]
  /external/skia/src/core/
SkStream.cpp 132 uint32_t value32 = SkToU32(value); local
134 memcpy(&data[1], &value32, 4);

Completed in 424 milliseconds

1 2