Home
last modified time | relevance | path

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

/external/libcups/cups/
Dtranscode.c80 cups_utf8_t *destptr; /* Pointer into UTF-8 buffer */ in cupsCharsetToUTF8() local
117 destptr = dest; in cupsCharsetToUTF8()
127 while (*src && destptr < destend) in cupsCharsetToUTF8()
133 *destptr++ = (cups_utf8_t)(0xc0 | (ch >> 6)); in cupsCharsetToUTF8()
134 *destptr++ = (cups_utf8_t)(0x80 | (ch & 0x3f)); in cupsCharsetToUTF8()
137 *destptr++ = (cups_utf8_t)ch; in cupsCharsetToUTF8()
140 *destptr = '\0'; in cupsCharsetToUTF8()
142 return ((int)(destptr - dest)); in cupsCharsetToUTF8()
187 *destptr = '\0'; in cupsCharsetToUTF8()
204 char *destptr; /* Pointer into destination */ in cupsUTF8ToCharset() local
[all …]
/external/linux-kselftest/tools/testing/selftests/rseq/
Dparam_test.c898 char *destptr, *srcptr; in this_cpu_memcpy_buffer_push() local
907 destptr = (char *)&buffer->c[cpu].array[offset]; in this_cpu_memcpy_buffer_push()
916 destptr, srcptr, copylen, in this_cpu_memcpy_buffer_push()
920 offset, destptr, srcptr, copylen, in this_cpu_memcpy_buffer_push()
942 char *destptr, *srcptr; in this_cpu_memcpy_buffer_pop() local
951 destptr = (char *)item; in this_cpu_memcpy_buffer_pop()
958 offset, destptr, srcptr, copylen, in this_cpu_memcpy_buffer_pop()
/external/u-boot/drivers/net/
Dxilinx_emaclite.c98 static void xemaclite_alignedread(u32 *srcptr, void *destptr, u32 bytecount) in xemaclite_alignedread() argument
110 to32ptr = (u32 *) destptr; in xemaclite_alignedread()
124 static void xemaclite_alignedwrite(void *srcptr, u32 *destptr, u32 bytecount) in xemaclite_alignedwrite() argument
128 u32 *to32ptr = (u32 *) destptr; in xemaclite_alignedwrite()
/external/compiler-rt/lib/BlocksRuntime/
Druntime.c173 static void _Block_assign_default(void *value, void **destptr) { in _Block_assign_default() argument
174 *destptr = value; in _Block_assign_default()
215 static void (*_Block_assign)(void *value, void **destptr) = _Block_assign_default;
/external/honggfuzz/third_party/android/libBlocksRuntime/
Druntime.c173 static void _Block_assign_default(void *value, void **destptr) { in _Block_assign_default() argument
174 *destptr = value; in _Block_assign_default()
215 static void (*_Block_assign)(void *value, void **destptr) = _Block_assign_default;
/external/mesa3d/src/glx/apple/
Dapple_glx_context.h83 bool apple_glx_copy_context(void *currentptr, void *srcptr, void *destptr,
Dapple_glx_context.c486 apple_glx_copy_context(void *currentptr, void *srcptr, void *destptr, in apple_glx_copy_context() argument
493 dest = destptr; in apple_glx_copy_context()
/external/jsilver/src/org/clearsilver/jni/
DJniHdf.java424 private static native void _copy(long destptr, String hdfpath, long srcptr);