Home
last modified time | relevance | path

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

/external/webrtc/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/
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()
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()
/external/webrtc/webrtc/modules/video_render/mac/
Dvideo_render_nsopengl.mm660 rtc::PlatformThread* tmpPtr = _screenUpdateThread.release();
662 if (tmpPtr)
667 tmpPtr->Stop();
668 delete tmpPtr;
865 rtc::PlatformThread* tmpPtr = _screenUpdateThread.release();
867 "%s Stopping thread ", __FUNCTION__, tmpPtr);
869 if (tmpPtr)
872 tmpPtr->Stop();
873 delete tmpPtr;
Dvideo_render_agl.cc680 rtc::PlatformThread* tmpPtr = _screenUpdateThread.release(); in ~VideoRenderAGL() local
682 if (tmpPtr) in ~VideoRenderAGL()
687 tmpPtr->Stop(); in ~VideoRenderAGL()
688 delete tmpPtr; in ~VideoRenderAGL()
859 rtc::PlatformThread* tmpPtr = _screenUpdateThread.release(); in StopThread() local
861 if (tmpPtr) in StopThread()
865 tmpPtr->Stop(); in StopThread()
866 delete tmpPtr; in StopThread()
/external/webrtc/webrtc/modules/video_render/windows/
Dvideo_render_direct3d9.cc308 rtc::PlatformThread* tmpPtr = _screenUpdateThread.release(); in ~VideoRenderDirect3D9() local
309 if (tmpPtr) in ~VideoRenderDirect3D9()
314 tmpPtr->Stop(); in ~VideoRenderDirect3D9()
315 delete tmpPtr; in ~VideoRenderDirect3D9()
/external/mesa3d/src/gallium/drivers/r600/
Dr600_state_common.c1173 uint32_t *tmpPtr; in r600_set_constant_buffer() local
1176 if (!(tmpPtr = malloc(size))) { in r600_set_constant_buffer()
1182 tmpPtr[i] = util_cpu_to_le32(((uint32_t *)ptr)[i]); in r600_set_constant_buffer()
1186 tmpPtr, &cb->buffer_offset, &cb->buffer); in r600_set_constant_buffer()
1187 free(tmpPtr); in r600_set_constant_buffer()
/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp915 const Formattable* tmpPtr = source.getArray(cnt); in format() local
916 return format(tmpPtr, NULL, cnt, appendTo, &ignore, success); in format()