OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tempPtr
(Results
1 - 4
of
4
) sorted by null
/external/icu4c/common/
ucnv_u8.c
356
uint8_t *
tempPtr
;
420
tempPtr
= (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
424
tempPtr
[0] = (uint8_t) ((ch >> 12) | 0xe0);
428
tempPtr
[0] = (uint8_t) ((ch >> 18) | 0xf0);
429
tempPtr
[1] = (uint8_t) (((ch >> 12) & 0x3f) | 0x80);
431
tempPtr
[indexToWrite-1] = (uint8_t) (((ch >> 6) & 0x3f) | 0x80);
432
tempPtr
[indexToWrite] = (uint8_t) ((ch & 0x3f) | 0x80);
434
if (
tempPtr
== myTarget) {
440
for (;
tempPtr
<= (tempBuf + indexToWrite);
tempPtr
++)
[
all
...]
/hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_pipes.c
232
TIMM_OSAL_U8 *
tempPtr
= NULL;
257
tempPtr
=
261
if (
tempPtr
== NULL)
269
read(pHandle->pfd[0],
tempPtr
, pHandle->totalBytesInPipe);
273
write(pHandle->pfd[1],
tempPtr
,
288
TIMM_OSAL_Free(
tempPtr
);
/ndk/sources/cxx-stl/gabi++/src/
helper_func_internal.cc
339
void*
tempPtr
= adjustedPtr;
341
static_cast<const __shim_type_info*>(excpType),
tempPtr
)) {
474
void*
tempPtr
= adjustedPtr;
476
static_cast<const __shim_type_info*>(excpType),
tempPtr
)) {
/external/opencv/cvaux/src/
enmin.cpp
150
int*
tempPtr
= ( int* ) malloc( ( width + 2 ) * 7 * sizeof( int ) );
151
*verticesPtr =
tempPtr
;
[
all
...]
Completed in 2030 milliseconds