OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tempPtr
(Results
1 - 6
of
6
) sorted by null
/external/icu/icu4c/source/common/
ucnv_u8.c
367
uint8_t *
tempPtr
;
431
tempPtr
= (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
435
tempPtr
[0] = (uint8_t) ((ch >> 12) | 0xe0);
439
tempPtr
[0] = (uint8_t) ((ch >> 18) | 0xf0);
440
tempPtr
[1] = (uint8_t) (((ch >> 12) & 0x3f) | 0x80);
442
tempPtr
[indexToWrite-1] = (uint8_t) (((ch >> 6) & 0x3f) | 0x80);
443
tempPtr
[indexToWrite] = (uint8_t) ((ch & 0x3f) | 0x80);
445
if (
tempPtr
== myTarget) {
451
for (;
tempPtr
<= (tempBuf + indexToWrite);
tempPtr
++)
[
all
...]
/prebuilts/ndk/r11/sources/cxx-stl/gabi++/src/
helper_func_internal.cc
335
void*
tempPtr
= adjustedPtr;
337
static_cast<const __shim_type_info*>(excpType),
tempPtr
)) {
470
void*
tempPtr
= adjustedPtr;
472
static_cast<const __shim_type_info*>(excpType),
tempPtr
)) {
/prebuilts/ndk/r13/sources/cxx-stl/gabi++/src/
helper_func_internal.cc
335
void*
tempPtr
= adjustedPtr;
337
static_cast<const __shim_type_info*>(excpType),
tempPtr
)) {
470
void*
tempPtr
= adjustedPtr;
472
static_cast<const __shim_type_info*>(excpType),
tempPtr
)) {
/external/libcxxabi/src/
cxa_personality.cpp
447
void*
tempPtr
= adjustedPtr;
448
if (catchType->can_catch(excpType,
tempPtr
))
481
void*
tempPtr
= adjustedPtr;
482
if (catchType->can_catch(excpType,
tempPtr
))
[
all
...]
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_personality.cpp
437
void*
tempPtr
= adjustedPtr;
438
if (catchType->can_catch(excpType,
tempPtr
))
471
void*
tempPtr
= adjustedPtr;
472
if (catchType->can_catch(excpType,
tempPtr
))
[
all
...]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/src/
cxa_personality.cpp
441
void*
tempPtr
= adjustedPtr;
442
if (catchType->can_catch(excpType,
tempPtr
))
475
void*
tempPtr
= adjustedPtr;
476
if (catchType->can_catch(excpType,
tempPtr
))
[
all
...]
Completed in 60 milliseconds