Home
last modified time | relevance | path

Searched refs:tmpPtr (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/ilbc/
Dpack_bits.c32 int16_t *tmpPtr; in WebRtcIlbcfix_PackBits() local
83 tmpPtr=enc_bits->idxVec; in WebRtcIlbcfix_PackBits()
87 (*bitstreamPtr) |= ((uint16_t)((*tmpPtr)&0x4)>>2)<<i; in WebRtcIlbcfix_PackBits()
89 tmpPtr++; in WebRtcIlbcfix_PackBits()
98 (*bitstreamPtr) |= ((uint16_t)((*tmpPtr)&0x4)>>2)<<i; in WebRtcIlbcfix_PackBits()
100 tmpPtr++; in WebRtcIlbcfix_PackBits()
112 (*bitstreamPtr) |= ((uint16_t)((*tmpPtr)&0x4)>>2)<<i; in WebRtcIlbcfix_PackBits()
114 tmpPtr++; in WebRtcIlbcfix_PackBits()
142 tmpPtr=enc_bits->idxVec; in WebRtcIlbcfix_PackBits()
146 (*bitstreamPtr) |= ((uint16_t)((*tmpPtr)&0x3))<<i; /* Bit 15-i..14-i*/ in WebRtcIlbcfix_PackBits()
[all …]
Dunpack_bits.c32 int16_t *tmpPtr; in WebRtcIlbcfix_UnpackBits() local
82 tmpPtr=enc_bits->idxVec; in WebRtcIlbcfix_UnpackBits()
85 (*tmpPtr) = (((*bitstreamPtr)>>i)<<2)&0x4; in WebRtcIlbcfix_UnpackBits()
87 tmpPtr++; in WebRtcIlbcfix_UnpackBits()
95 (*tmpPtr) = (((*bitstreamPtr)>>i)<<2)&0x4; in WebRtcIlbcfix_UnpackBits()
97 tmpPtr++; in WebRtcIlbcfix_UnpackBits()
108 (*tmpPtr) = (((*bitstreamPtr)>>i)<<2)&0x4; in WebRtcIlbcfix_UnpackBits()
110 tmpPtr++; in WebRtcIlbcfix_UnpackBits()
138 tmpPtr=enc_bits->idxVec; in WebRtcIlbcfix_UnpackBits()
141 (*tmpPtr) |= ((*bitstreamPtr)>>i)&0x3; /* Bit 15-i..14-i*/ in WebRtcIlbcfix_UnpackBits()
[all …]
Dinterpolate_samples.c28 int16_t *tmpPtr; in WebRtcIlbcfix_InterpolateSamples() local
32 tmpPtr = interpSamples; in WebRtcIlbcfix_InterpolateSamples()
40 *tmpPtr++ = (int16_t)((WebRtcIlbcfix_kAlpha[temp2] * *ppo) >> 15) + in WebRtcIlbcfix_InterpolateSamples()
/external/ltp/testcases/kernel/syscalls/nftw/
Dlib.c179 char *path, *tmpPtr; in test_ENAMETOOLONG_path() local
207 tmpPtr = path + strlen(path); in test_ENAMETOOLONG_path()
209 tmpPtr += sprintf(tmpPtr, "/%s", tmp_path); in test_ENAMETOOLONG_path()
216 tmpPtr = path + pathLength; in test_ENAMETOOLONG_path()
217 *tmpPtr++ = '/'; in test_ENAMETOOLONG_path()
220 *tmpPtr++ = 'z'; in test_ENAMETOOLONG_path()
223 *tmpPtr = '\0'; in test_ENAMETOOLONG_path()
Dlib64.c179 char *path, *tmpPtr; in test_ENAMETOOLONG_path() local
207 tmpPtr = path + strlen(path); in test_ENAMETOOLONG_path()
209 tmpPtr += sprintf(tmpPtr, "/%s", tmp_path); in test_ENAMETOOLONG_path()
216 tmpPtr = path + pathLength; in test_ENAMETOOLONG_path()
217 *tmpPtr++ = '/'; in test_ENAMETOOLONG_path()
220 *tmpPtr++ = 'z'; in test_ENAMETOOLONG_path()
223 *tmpPtr = '\0'; in test_ENAMETOOLONG_path()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_gfx_mem.cpp227 Value* tmpPtr; in TrackerHelper() local
236 tmpPtr = Ptr; in TrackerHelper()
243 tmpPtr = PTR_TO_INT(Ptr, mInt64Ty); in TrackerHelper()
256 tmpPtr, in TrackerHelper()
/external/mesa3d/src/gallium/drivers/r600/
Dr600_state_common.c1214 uint32_t *tmpPtr; in r600_set_constant_buffer() local
1217 if (!(tmpPtr = malloc(size))) { in r600_set_constant_buffer()
1223 tmpPtr[i] = util_cpu_to_le32(((uint32_t *)ptr)[i]); in r600_set_constant_buffer()
1227 tmpPtr, &cb->buffer_offset, &cb->buffer); in r600_set_constant_buffer()
1228 free(tmpPtr); in r600_set_constant_buffer()
/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp920 const Formattable* tmpPtr = source.getArray(cnt); in format() local
921 return format(tmpPtr, NULL, cnt, appendTo, &ignore, success); in format()