Searched defs:value32 (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dvector_scaling_operations_mips.c30 int i = 0, value32 = 0; local
42 "extrv_r.w %[value32], $ac0, %[right_shifts] \n\t"
45 "sh %[value32], 0(%[out]) \n\t"
47 : [value32] "=&r" (value32), [out] "+r" (out), [in1] "+r" (in1),
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestplatform.c65 Uint32 value32 = 0xEFBEADDE; local
103 printf("Value 32 = 0x%X, swapped = 0x%X\n", value32, SDL_Swap32(value32));
105 if ( SDL_Swap32(value32) != swapped32 ) {
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/include/
H A Dspl_inl.h27 static __inline int16_t WebRtcSpl_SatW32ToW16(int32_t value32) { argument
28 int16_t out16 = (int16_t) value32;
30 if (value32 > 32767)
32 else if (value32 < -32768)
H A Dspl_inl_armv7.h157 static __inline int16_t WebRtcSpl_SatW32ToW16(int32_t value32) { argument
160 __asm __volatile ("ssat %0, #16, %1" : "=r"(out) : "r"(value32));
H A Dspl_inl_mips.h20 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] "
126 WebRtcSpl_SatW32ToW16(int32_t value32) argument
138 int32_t value32 = 0; local
161 int32_t value32; local
[all...]
/external/webrtc/src/common_audio/signal_processing/include/
H A Dspl_inl.h22 static __inline WebRtc_Word16 WebRtcSpl_SatW32ToW16(WebRtc_Word32 value32) { argument
23 WebRtc_Word16 out16 = (WebRtc_Word16) value32;
25 if (value32 > 32767)
27 else if (value32 < -32768)
H A Dspl_inl_armv7.h130 static __inline WebRtc_Word16 WebRtcSpl_SatW32ToW16(WebRtc_Word32 value32) { argument
133 __asm__("ssat %0, #16, %1" : "=r"(out16) : "r"(value32));
/external/chromium_org/third_party/skia/src/core/
H A DSkUtils.cpp62 uint32_t value32 = ((uint32_t)value << 16) | value; local
70 assign_16_longs(dst32, value32);
82 *(uint32_t*)dst = value32;
H A DSkStream.cpp164 uint32_t value32 = SkToU32(value); local
166 memcpy(&data[1], &value32, 4);
/external/skia/src/core/
H A DSkUtils.cpp62 uint32_t value32 = ((uint32_t)value << 16) | value; local
70 assign_16_longs(dst32, value32);
82 *(uint32_t*)dst = value32;
H A DSkStream.cpp164 uint32_t value32 = SkToU32(value); local
166 memcpy(&data[1], &value32, 4);
/external/lldb/source/Core/
H A DDisassembler.cpp1249 uint32_t value32 = *((uint32_t *) opcode_data); local
1250 m_opcode.SetOpcode32 (value32);
/external/vixl/test/
H A Dtest-assembler-a64.cc4145 int32_t value32 = static_cast<int32_t>(value & 0xffffffff); local
4146 ASSERT_EQUAL_32(value32 >> (shift[0] & 31), w22);
4147 ASSERT_EQUAL_32(value32 >> (shift[1] & 31), w23);
4148 ASSERT_EQUAL_32(value32 >> (shift[2] & 31), w24);
4149 ASSERT_EQUAL_32(value32 >> (shift[3] & 31), w25);
4150 ASSERT_EQUAL_32(value32 >> (shift[4] & 31), w26);
4151 ASSERT_EQUAL_32(value32 >> (shift[5] & 31), w27);
/external/chromium_org/v8/test/cctest/
H A Dtest-assembler-arm64.cc4660 int32_t value32 = static_cast<int32_t>(value & 0xffffffffUL); local
4661 ASSERT_EQUAL_32(value32 >> (shift[0] & 31), w22);
4662 ASSERT_EQUAL_32(value32 >> (shift[1] & 31), w23);
4663 ASSERT_EQUAL_32(value32 >> (shift[2] & 31), w24);
4664 ASSERT_EQUAL_32(value32 >> (shift[3] & 31), w25);
4665 ASSERT_EQUAL_32(value32 >> (shift[4] & 31), w26);
4666 ASSERT_EQUAL_32(value32 >> (shift[5] & 31), w27);

Completed in 369 milliseconds