HomeSort by: relevance | last modified time | path
    Searched defs:ARG (Results 1 - 14 of 14) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/cf/
w32-hh-toc-from-info.pl 39 ARG: {
42 last ARG;
w32-list-externs-from-objs.pl 91 ARG: {
94 last ARG;
99 last ARG;
104 last ARG;
109 last ARG;
w32-def-from-dll.pl 184 ARG: {
187 last ARG;
192 last ARG;
197 last ARG;
202 last ARG;
207 last ARG;
  /src/external/lgpl3/mpfr/dist/tests/
tisnan.c 34 #define ARG (i++, VOIDP_CAST(x))
59 if (mpfr_nan_p (x) || (mpfr_nan_p) (x) || mpfr_nan_p (ARG))
65 if (!mpfr_inf_p (x) || !(mpfr_inf_p) (x) || !mpfr_inf_p (ARG))
71 if (mpfr_number_p (x) || (mpfr_number_p) (x) || mpfr_number_p (ARG))
77 if (mpfr_zero_p (x) || (mpfr_zero_p) (x) || mpfr_zero_p (ARG))
83 if (mpfr_regular_p (x) || (mpfr_regular_p) (x) || mpfr_regular_p (ARG))
92 if (mpfr_nan_p (x) || (mpfr_nan_p) (x) || mpfr_nan_p (ARG))
98 if (!mpfr_inf_p (x) || !(mpfr_inf_p) (x) || !mpfr_inf_p (ARG))
104 if (mpfr_number_p (x) || (mpfr_number_p) (x) || mpfr_number_p (ARG))
110 if (mpfr_zero_p (x) || (mpfr_zero_p) (x) || mpfr_zero_p (ARG))
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
fdr_controller_test.cc 128 // Serialize the buffers then test to see we find the function enter arg
338 uint64_t ARG = 1;
340 ASSERT_TRUE(C->functionEnterArg(1, TSC++, CPU, ARG++));
  /src/usr.bin/tail/
tail.c 87 #define ARG(units, forward, backward) { \
123 ARG(512, FBYTES, RBYTES);
126 ARG(1, FBYTES, RBYTES);
132 ARG(1, FLINES, RLINES);
  /src/external/bsd/pcc/dist/pcc/driver/
options.c 45 #define ARG(n) (STR(n)|VAL) /* match, and require an argument */
46 #define VAL 0x0100 /* arg value is required */
65 { "-param", ARG(0), ignore, NULL },
68 { "B", ARG(1), arg_add, &opt.prefix },
71 { "D", ARG(1), arg_add, &opt.DIU },
73 { "I", ARG(1), arg_add, &opt.DIU },
74 { "L", ARG(1), arg_add, &opt.ldargs },
79 { "U", ARG(1), arg_add, &opt.DIU },
106 { "isystem", ARG(0), str_set, &opt.isystem },
107 { "include", ARG(0), str_add, &opt.include }
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bio/
bio_sock.c 175 int BIO_socket_ioctl(int fd, long type, void *arg)
180 i = ioctlsocket(fd, type, (char *)arg);
185 * VMS ioctl() can't tolerate a 64-bit "void *arg", but we
191 # define ARG arg_32p
198 arg_32 = *((unsigned long *)arg);
200 # define ARG arg
203 # define ARG arg
206 i = ioctlsocket(fd, type, ARG);
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bio/
b_sock.c 161 int BIO_socket_ioctl(int fd, long type, void *arg)
166 i = ioctlsocket(fd, type, (char *)arg);
171 * VMS ioctl() can't tolerate a 64-bit "void *arg", but we
177 # define ARG arg_32p
184 arg_32 = *((unsigned long *)arg);
186 # define ARG arg
189 # define ARG arg
192 i = ioctlsocket(fd, type, ARG);
    [all...]
  /src/sys/dev/wscons/
vt100_base.h 73 #define ARG(d, n) ((d)->args[(n)])
74 #define DEF1_ARG(d, n) (ARG(d, n) ? ARG(d, n) : 1)
75 #define DEFx_ARG(d, n, x) (ARG(d, n) ? ARG(d, n) : (x))
wsemul_sun.c 110 #define ARG(n) (edp->args[(n)])
111 #define NORMALIZE_ARG(n) (ARG(n) ? ARG(n) : 1)
431 if (ARG(0))
446 edp->scrolldist = uimin(ARG(0), edp->nrows);
  /src/usr.bin/rpcgen/
rpc_svcout.c 56 static char ARG[] = "argument";
306 /* arg name */
404 f_print(fout, "\t} %s;\n", ARG);
422 f_print(fout, "\txdrproc_t xdr_%s, xdr_%s;\n", ARG, RESULT);
449 p_xdrfunc(ARG, proc->args.decls->decl.type);
451 p_xdrfunc(ARG, proc->args.argname);
477 f_print(fout, "\t(void) memset(&%s, 0, sizeof(%s));\n", ARG, ARG);
478 printif("getargs", TRANSP, "(caddr_t)&", ARG);
485 ROUTINE, ARG, RESULT, RQSTP)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bio/
bio_sock.c 214 int BIO_socket_ioctl(int fd, long type, void *arg)
219 i = ioctlsocket(fd, type, (char *)arg);
224 * VMS ioctl() can't tolerate a 64-bit "void *arg", but we
230 #define ARG arg_32p
237 arg_32 = *((unsigned long *)arg);
239 #define ARG arg
242 #define ARG arg
245 i = ioctlsocket(fd, type, ARG);
    [all...]
  /src/usr.bin/last/
last.c 94 typedef struct arg { struct
99 int type; /* type of arg */
100 struct arg *next; /* linked list pointer */
101 } ARG;
102 static ARG *arglist; /* head of linked list */
272 addarg(int type, const char *arg)
274 ARG *cur;
276 if (!(cur = (ARG *)malloc(sizeof(ARG))))
280 cur->name = arg;
    [all...]

Completed in 34 milliseconds