HomeSort by relevance Sort by last modified time
    Searched defs:ap (Results 1 - 25 of 939) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-openbsd/lib/libc/gen/
err.c 37 va_list ap; local
39 va_start(ap, fmt);
40 verr(eval, fmt, ap);
41 va_end(ap);
errx.c 37 va_list ap; local
39 va_start(ap, fmt);
40 verrx(eval, fmt, ap);
41 va_end(ap);
warn.c 37 va_list ap; local
39 va_start(ap, fmt);
40 vwarn(fmt, ap);
41 va_end(ap);
warnx.c 37 va_list ap; local
39 va_start(ap, fmt);
40 vwarnx(fmt, ap);
41 va_end(ap);
  /external/clang/test/CodeGen/
2003-08-20-BadBitfieldRef.c 5 char *ap; local
6 ap[1] == '-' && ap[2] == 0; local
  /external/clang/test/Sema/
varargs-win64.c 4 __builtin_va_list ap; local
5 __builtin_va_start(ap, a); // expected-error {{'va_start' used in System V ABI function}}
  /external/clang/test/SemaCXX/
PR9459.cpp 6 template<typename>struct ts{}ap() // expected-error {{expected ';' after struct}} expected-error {{requires a type specifier}} function
7 {ts<a>::ap<ae_same<int>::&ae_same<>>::p(a); }; // expected-error {{use of undeclared identifier 'a'}}
  /external/pdfium/skia/ext/
google_logging.cc 19 va_list ap; local
20 va_start(ap, format);
23 vfprintf(stderr, format, ap);
24 va_end(ap);
  /external/syslinux/com32/lib/
dprintf.c 14 va_list ap; local
16 va_start(ap, format);
17 vdprintf(format, ap);
18 va_end(ap);
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_android.c 12 va_list ap; local
21 va_start(ap, format);
22 vfprintf(stderr, format, ap);
23 va_end(ap);
26 va_start(ap, format);
27 __android_log_vprint(ANDROID_LOG_FATAL, "runtime/cgo", format, ap);
28 va_end(ap);
gcc_fatalf.c 15 va_list ap; local
18 va_start(ap, format);
19 vfprintf(stderr, format, ap);
20 va_end(ap);
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_android.c 12 va_list ap; local
21 va_start(ap, format);
22 vfprintf(stderr, format, ap);
23 va_end(ap);
26 va_start(ap, format);
27 __android_log_vprint(ANDROID_LOG_FATAL, "runtime/cgo", format, ap);
28 va_end(ap);
gcc_fatalf.c 15 va_list ap; local
18 va_start(ap, format);
19 vfprintf(stderr, format, ap);
20 va_end(ap);
  /bionic/libc/bionic/
ioctl.cpp 35 va_list ap; local
36 va_start(ap, request);
37 void* arg = va_arg(ap, void*);
38 va_end(ap);
mremap.cpp 51 va_list ap; local
52 va_start(ap, flags);
53 new_address = va_arg(ap, void*);
54 va_end(ap);
  /bootable/recovery/
stub_ui.h 48 va_list ap; variable
49 va_start(ap, fmt);
50 vprintf(fmt, ap);
51 va_end(ap); variable
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fprintf.c 57 va_list ap; local
66 va_start(ap, fmt);
67 ret = vfprintf(fp, fmt, ap);
68 va_end(ap);
fscanf.c 60 va_list ap; local
62 va_start(ap, fmt);
63 ret = __svfscanf(fp, fmt, ap);
64 va_end(ap);
fwprintf.c 46 va_list ap; local
48 va_start(ap, fmt);
49 ret = vfwprintf(fp, fmt, ap);
50 va_end(ap);
fwscanf.c 45 va_list ap; local
48 va_start(ap, fmt);
49 r = vfwscanf(fp, fmt, ap);
50 va_end(ap);
printf.c 57 va_list ap; local
59 va_start(ap, fmt);
60 ret = vfprintf(stdout, fmt, ap);
61 va_end(ap);
scanf.c 56 va_list ap; local
60 va_start(ap, fmt);
61 ret = __svfscanf(stdin, fmt, ap);
62 va_end(ap);
snprintf_ss.c 62 va_list ap; local
65 va_start(ap, fmt);
66 ret = vsnprintf_ss(str, n, fmt, ap);
67 va_end(ap);
swprintf.c 40 va_list ap; local
42 va_start(ap, fmt);
43 ret = vswprintf(s, n, fmt, ap);
44 va_end(ap);
swscanf.c 39 va_list ap; local
42 va_start(ap, fmt);
43 r = vswscanf(str, fmt, ap);
44 va_end(ap);

Completed in 276 milliseconds

1 2 3 4 5 6 7 8 91011>>