Home
last modified time | relevance | path

Searched refs:value32 (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/src/common_audio/signal_processing/include/
Dspl_inl.h22 static __inline WebRtc_Word16 WebRtcSpl_SatW32ToW16(WebRtc_Word32 value32) { in WebRtcSpl_SatW32ToW16() argument
23 WebRtc_Word16 out16 = (WebRtc_Word16) value32; in WebRtcSpl_SatW32ToW16()
25 if (value32 > 32767) in WebRtcSpl_SatW32ToW16()
27 else if (value32 < -32768) in WebRtcSpl_SatW32ToW16()
Dspl_inl_armv7.h130 static __inline WebRtc_Word16 WebRtcSpl_SatW32ToW16(WebRtc_Word32 value32) { in WebRtcSpl_SatW32ToW16() argument
133 __asm__("ssat %0, #16, %1" : "=r"(out16) : "r"(value32)); in WebRtcSpl_SatW32ToW16()
/external/lz4/programs/
Dlz4io.c281 static void LZ4IO_writeLE32 (void* p, unsigned value32) in LZ4IO_writeLE32() argument
284 dstPtr[0] = (unsigned char)value32; in LZ4IO_writeLE32()
285 dstPtr[1] = (unsigned char)(value32 >> 8); in LZ4IO_writeLE32()
286 dstPtr[2] = (unsigned char)(value32 >> 16); in LZ4IO_writeLE32()
287 dstPtr[3] = (unsigned char)(value32 >> 24); in LZ4IO_writeLE32()
472 unsigned value32 = srcPtr[0]; in LZ4IO_readLE32() local
473 value32 += (srcPtr[1]<<8); in LZ4IO_readLE32()
474 value32 += (srcPtr[2]<<16); in LZ4IO_readLE32()
475 value32 += (srcPtr[3]<<24); in LZ4IO_readLE32()
476 return value32; in LZ4IO_readLE32()
/external/libvncserver/libvncserver/
Dauth.c261 uint32_t value32; in rfbSendSecurityType() local
264 value32 = Swap32IfLE(securityType); in rfbSendSecurityType()
265 if (rfbWriteExact(cl, (char *)&value32, 4) < 0) { in rfbSendSecurityType()
/external/lz4/lib/
Dlz4frame.c192 static void LZ4F_writeLE32 (BYTE* dstPtr, U32 value32) in LZ4F_writeLE32() argument
194 dstPtr[0] = (BYTE)value32; in LZ4F_writeLE32()
195 dstPtr[1] = (BYTE)(value32 >> 8); in LZ4F_writeLE32()
196 dstPtr[2] = (BYTE)(value32 >> 16); in LZ4F_writeLE32()
197 dstPtr[3] = (BYTE)(value32 >> 24); in LZ4F_writeLE32()
202 U32 value32 = srcPtr[0]; in LZ4F_readLE32() local
203 value32 += (srcPtr[1]<<8); in LZ4F_readLE32()
204 value32 += (srcPtr[2]<<16); in LZ4F_readLE32()
205 value32 += (srcPtr[3]<<24); in LZ4F_readLE32()
206 return value32; in LZ4F_readLE32()
/external/skia/src/core/
DSkUtils.cpp62 uint32_t value32 = ((uint32_t)value << 16) | value; in sk_memset16_portable() local
70 assign_16_longs(dst32, value32); in sk_memset16_portable()
82 *(uint32_t*)dst = value32; in sk_memset16_portable()
DSkStream.cpp155 uint32_t value32 = SkToU32(value); in writePackedUInt() local
157 memcpy(&data[1], &value32, 4); in writePackedUInt()
/external/google-breakpad/src/processor/
Dminidump.cc139 uint32_t* value32 = reinterpret_cast<uint32_t*>(value); in Swap() local
140 Swap(&value32[0]); in Swap()
141 Swap(&value32[1]); in Swap()
142 uint32_t temp = value32[0]; in Swap()
143 value32[0] = value32[1]; in Swap()
144 value32[1] = temp; in Swap()
/external/lldb/source/Core/
DDisassembler.cpp1249 uint32_t value32 = *((uint32_t *) opcode_data); in SetOpcode() local
1250 m_opcode.SetOpcode32 (value32); in SetOpcode()
/external/v8/test/cctest/
Dtest-assembler-arm64.cc4859 int32_t value32 = static_cast<int32_t>(value & 0xffffffffUL); in TEST() local
4860 CHECK_EQUAL_32(value32 >> (shift[0] & 31), w22); in TEST()
4861 CHECK_EQUAL_32(value32 >> (shift[1] & 31), w23); in TEST()
4862 CHECK_EQUAL_32(value32 >> (shift[2] & 31), w24); in TEST()
4863 CHECK_EQUAL_32(value32 >> (shift[3] & 31), w25); in TEST()
4864 CHECK_EQUAL_32(value32 >> (shift[4] & 31), w26); in TEST()
4865 CHECK_EQUAL_32(value32 >> (shift[5] & 31), w27); in TEST()
/external/vixl/test/
Dtest-assembler-a64.cc8639 int32_t value32 = static_cast<int32_t>(value & 0xffffffff); in TEST() local
8640 ASSERT_EQUAL_32(value32 >> (shift[0] & 31), w22); in TEST()
8641 ASSERT_EQUAL_32(value32 >> (shift[1] & 31), w23); in TEST()
8642 ASSERT_EQUAL_32(value32 >> (shift[2] & 31), w24); in TEST()
8643 ASSERT_EQUAL_32(value32 >> (shift[3] & 31), w25); in TEST()
8644 ASSERT_EQUAL_32(value32 >> (shift[4] & 31), w26); in TEST()
8645 ASSERT_EQUAL_32(value32 >> (shift[5] & 31), w27); in TEST()