Searched refs:destptr (Results 1 - 6 of 6) sorted by relevance

/external/libcups/cups/
H A Dtranscode.c80 cups_utf8_t *destptr; /* Pointer into UTF-8 buffer */ local
117 destptr = dest;
127 while (*src && destptr < destend)
133 *destptr++ = (cups_utf8_t)(0xc0 | (ch >> 6));
134 *destptr++ = (cups_utf8_t)(0x80 | (ch & 0x3f));
137 *destptr++ = (cups_utf8_t)ch;
140 *destptr = '\0';
142 return ((int)(destptr - dest));
187 *destptr = '\0';
204 char *destptr; /* Pointe local
[all...]
/external/mesa3d/src/glx/apple/
H A Dapple_glx_context.h83 bool apple_glx_copy_context(void *currentptr, void *srcptr, void *destptr,
H A Dapple_glx_context.c484 apple_glx_copy_context(void *currentptr, void *srcptr, void *destptr, argument
491 dest = destptr;
/external/compiler-rt/lib/BlocksRuntime/
H A Druntime.c173 static void _Block_assign_default(void *value, void **destptr) { argument
174 *destptr = value;
215 static void (*_Block_assign)(void *value, void **destptr) = _Block_assign_default;
/external/honggfuzz/third_party/android/libBlocksRuntime/
H A Druntime.c173 static void _Block_assign_default(void *value, void **destptr) { argument
174 *destptr = value;
215 static void (*_Block_assign)(void *value, void **destptr) = _Block_assign_default;
/external/jsilver/src/org/clearsilver/jni/
H A DJniHdf.java424 private static native void _copy(long destptr, String hdfpath, long srcptr); argument

Completed in 570 milliseconds