/external/clang/test/Sema/ |
variadic-block.c | 9 va_list argp; 15 va_start(argp, format); 18 i = va_arg(argp, int); 22 d = va_arg(argp, double); 26 c = va_arg(argp, int);
|
/system/core/libsparse/ |
sparse_err.c | 25 va_list argp; local 27 va_start(argp, fmt); 28 vfprintf(stderr, fmt, argp); 29 va_end(argp);
|
/external/compiler-rt/BlocksRuntime/tests/ |
variadic.c | 24 va_list argp; 30 va_start(argp, format); 34 i = va_arg(argp, int); 39 d = va_arg(argp, double); 44 c = va_arg(argp, int);
|
/external/libffi/src/arm/ |
ffi.c | 39 register char *argp; local 42 argp = stack; 45 *(void **) argp = ecif->rvalue; 46 argp += 4; 58 if (((*p_arg)->alignment - 1) & (unsigned) argp) { 59 argp = (char *) ALIGN(argp, (*p_arg)->alignment); 63 argp = (char *) ALIGN(argp, 4); 72 *(signed int *) argp = (signed int)*(SINT8 *)(* p_argv) 237 register char *argp; local [all...] |
/external/libffi/src/alpha/ |
ffi.c | 81 unsigned long *stack, *argp; local 92 argp = stack = alloca(cif->bytes + 4*FFI_SIZEOF_ARG); 95 *(void **) argp++ = rvalue; 108 *(SINT64 *) argp = *(SINT8 *)(* avalue); 112 *(SINT64 *) argp = *(UINT8 *)(* avalue); 116 *(SINT64 *) argp = *(SINT16 *)(* avalue); 120 *(SINT64 *) argp = *(UINT16 *)(* avalue); 126 *(SINT64 *) argp = *(SINT32 *)(* avalue); 132 *(UINT64 *) argp = *(UINT64 *)(* avalue); 136 if (argp - stack < 6 [all...] |
/external/libffi/src/m32r/ |
ffi.c | 41 char *argp; local 45 argp = stack; 49 *(void **) argp = ecif->rvalue; 50 argp += 4; 63 if (((*p_arg)->alignment - 1) & (unsigned) argp) 64 argp = (char *) ALIGN (argp, (*p_arg)->alignment); 77 *(signed int *) argp = (signed int)*(SINT8 *)(* p_argv); 81 *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv); 85 *(signed int *) argp = (signed int)*(SINT16 *)(* p_argv) [all...] |
/frameworks/native/opengl/libs/EGL/ |
trace.cpp | 89 va_list argp; local 90 va_start(argp, fmt); 91 line_index += vsnprintf(line + line_index, lineSize-line_index, fmt, argp); 92 va_end(argp); 182 va_list argp; 183 va_start(argp, numArgs); 188 va_arg(argp, const char*); 189 GLuint shader = va_arg(argp, GLuint); 190 va_arg(argp, const char*); 191 GLsizei count = va_arg(argp, GLsizei) [all...] |
/frameworks/base/services/common_time/ |
utils.cpp | 68 va_list argp; local 69 va_start(argp, fmt); 70 internalLog(prio, tag, fmt, argp); 71 va_end(argp); 75 va_list argp; local 76 va_start(argp, fmt); 77 internalLog(0, NULL, fmt, argp); 78 va_end(argp); 84 va_list argp) { 87 String8 s(String8::formatV(fmt, argp)); [all...] |
/external/libffi/src/sparc/ |
ffi.c | 40 char *argp; local 44 argp = stack + 16*sizeof(int); 50 *(int *) argp = (long)ecif->rvalue; 53 argp += sizeof(int); 59 ((int*)argp)[0] = 0; 60 ((int*)argp)[1] = 0; 61 ((int*)argp)[2] = 0; 62 ((int*)argp)[3] = 0; 63 ((int*)argp)[4] = 0; 64 ((int*)argp)[5] = 0 127 char *argp; local [all...] |
/external/libffi/src/m68k/ |
ffi.c | 32 char *argp; local 36 argp = stack; 58 *(signed int *) argp = (signed int) *(SINT8 *) *p_argv; 62 *(unsigned int *) argp = (unsigned int) *(UINT8 *) *p_argv; 66 *(signed int *) argp = (signed int) *(SINT16 *) *p_argv; 70 *(unsigned int *) argp = (unsigned int) *(UINT16 *) *p_argv; 74 memcpy (argp + sizeof (int) - z, *p_argv, z); 84 memcpy (argp, *p_argv, z); 92 argp += z; 204 char *argp; local [all...] |
/external/libffi/src/sh/ |
ffi.c | 117 register char *argp; local 125 argp = stack; 129 *(void **) argp = ecif->rvalue; 130 argp += 4; 155 *(signed int *) argp = (signed int)*(SINT8 *)(* p_argv); 159 *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv); 163 *(signed int *) argp = (signed int)*(SINT16 *)(* p_argv); 167 *(unsigned int *) argp = (unsigned int)*(UINT16 *)(* p_argv); 171 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv); 177 argp += z [all...] |
/external/libffi/src/mips/ |
ffi.c | 51 FFI_ASSERT(argp <= &stack[bytes]); \ 52 if (argp == &stack[bytes]) \ 54 argp = stack; \ 72 char *argp; local 80 argp = &stack[bytes - (8 * sizeof(ffi_arg))]; 82 argp = stack; 84 argp = stack; 95 *(ffi_arg *) argp = (ffi_arg) ecif->rvalue; 96 argp += sizeof(ffi_arg); 112 if ((a - 1) & (unsigned long) argp) 766 char *argp; local 844 ffi_arg *argp = argn >= 8 ? ar + argn : fpr + argn; local 859 ffi_arg *argp = ar + argn; local [all...] |
/external/libffi/src/x86/ |
ffi.c | 45 register char *argp; local 48 argp = stack; 52 *(void **) argp = ecif->rvalue; 53 argp += 4; 65 if ((sizeof(int) - 1) & (unsigned) argp) 66 argp = (char *) ALIGN(argp, sizeof(int)); 75 *(signed int *) argp = (signed int)*(SINT8 *)(* p_argv); 79 *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv); 83 *(signed int *) argp = (signed int)*(SINT16 *)(* p_argv) 278 register char *argp; local [all...] |
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
srpc_params.cc | 91 for (NaClSrpcArg** argp = vec; *argp; ++argp) { 92 FreeSrpcArg(*argp);
|
/external/e2fsprogs/lib/ss/ |
execute_cmd.c | 175 char **argp; local 178 for (argp = argv; *argp; argp++) 180 argp = (char **)malloc((argc+1)*sizeof(char *)); 182 argp[i] = argv[i]; 183 i = really_execute_command(sci_idx, argc, &argp); 184 free(argp);
|
/external/valgrind/main/drd/tests/ |
thread_name.c | 18 static void* thread_func(void* argp) 20 const int thread_num = (ptrdiff_t)(argp);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
argp.h | 80 these is passed in the OPTIONS field of an argp structure. Each option 142 completely documented in an argp's ARGS_DOC field, in which case including 150 struct argp; /* fwd declare this type */ 154 /* The type of a pointer to an argp parsing function. */ 180 If an error occurs (either detected by argp, or because the parsing 218 /* An argp structure contains a set of options declarations, a function to 220 argp's, and perhaps a function to filter help output. When actually 221 parsing options, getopt is called with the union of all the argp 224 struct argp 252 argp field, pointing to child argps should be parsed with this one. An 222 struct argp struct 291 __const struct argp *argp; member in struct:argp_child [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
argp.h | 80 these is passed in the OPTIONS field of an argp structure. Each option 142 completely documented in an argp's ARGS_DOC field, in which case including 150 struct argp; /* fwd declare this type */ 154 /* The type of a pointer to an argp parsing function. */ 180 If an error occurs (either detected by argp, or because the parsing 218 /* An argp structure contains a set of options declarations, a function to 220 argp's, and perhaps a function to filter help output. When actually 221 parsing options, getopt is called with the union of all the argp 224 struct argp 252 argp field, pointing to child argps should be parsed with this one. An 222 struct argp struct 291 __const struct argp *argp; member in struct:argp_child [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
argp.h | 80 these is passed in the OPTIONS field of an argp structure. Each option 142 completely documented in an argp's ARGS_DOC field, in which case including 150 struct argp; /* fwd declare this type */ 154 /* The type of a pointer to an argp parsing function. */ 180 If an error occurs (either detected by argp, or because the parsing 218 /* An argp structure contains a set of options declarations, a function to 220 argp's, and perhaps a function to filter help output. When actually 221 parsing options, getopt is called with the union of all the argp 224 struct argp 252 argp field, pointing to child argps should be parsed with this one. An 222 struct argp struct 291 __const struct argp *argp; member in struct:argp_child [all...] |
/bionic/libc/unistd/ |
system.c | 47 char *argp[] = {"sh", "-c", NULL, NULL}; local 52 argp[2] = (char *)command; 63 execve(_PATH_BSHELL, argp, environ);
|
/external/libffi/src/cris/ |
ffi.c | 75 char *argp; local 78 argp = stack; 94 memcpy (argp, *p_argv, z); 99 memcpy (argp, *p_argv, z); 108 *(unsigned int *) argp = 121 *(signed int *) argp = (signed int) *(SINT8 *) (*p_argv); 125 *(unsigned int *) argp = 130 *(signed int *) argp = (signed int) *(SINT16 *) (*p_argv); 134 *(unsigned int *) argp = 144 *(unsigned int *) argp = (unsigned int) *(UINT32 *) (*p_argv) [all...] |
/external/libffi/src/frv/ |
ffi.c | 41 register char *argp; local 46 argp = stack; 59 *(void **) argp = *p_argv; 66 *(double *) argp = (double) *(float*)(* p_argv); 70 *(void **) argp = *(void **)(* p_argv); 78 *(signed int *) argp = (signed int)*(SINT8 *)(* p_argv); 82 *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv); 86 *(signed int *) argp = (signed int)*(SINT16 *)(* p_argv); 90 *(unsigned int *) argp = (unsigned int)*(UINT16 *)(* p_argv); 99 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv) [all...] |
/external/libffi/src/sh64/ |
ffi.c | 66 register char *argp; local 69 argp = stack; 73 *(void **) argp = ecif->rvalue; 74 argp += sizeof (UINT64); 92 *(SINT64 *) argp = (SINT64) *(SINT8 *)(*p_argv); 96 *(UINT64 *) argp = (UINT64) *(UINT8 *)(*p_argv); 100 *(SINT64 *) argp = (SINT64) *(SINT16 *)(*p_argv); 104 *(UINT64 *) argp = (UINT64) *(UINT16 *)(*p_argv); 108 memcpy (argp, *p_argv, z); 114 argp += sizeof (UINT64) [all...] |
/system/netd/ |
NetdConstants.cpp | 37 const char** argp = argv; local 39 while (*argp) { 40 args += *argp; 42 argp++;
|
/external/elfutils/src/ |
ranlib.c | 32 #include <argp.h> 67 /* Definitions of arguments for argp functions. */ 79 /* Data structure to communicate with argp functions. */ 80 static const struct argp argp = variable in typeref:struct:argp 108 (void) argp_parse (&argp, argc, argv, ARGP_IN_ORDER, &remaining, NULL); 117 argp_help (&argp, stderr, ARGP_HELP_SEE, "ranlib");
|