Home
last modified time | relevance | path

Searched defs:P (Results 1 – 25 of 135) sorted by relevance

123456

/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dstor-layout.h69 #define make_signed_fract_type(P) make_fract_type (P, 0, 0) argument
70 #define make_unsigned_fract_type(P) make_fract_type (P, 1, 0) argument
71 #define make_sat_signed_fract_type(P) make_fract_type (P, 0, 1) argument
72 #define make_sat_unsigned_fract_type(P) make_fract_type (P, 1, 1) argument
73 #define make_signed_accum_type(P) make_accum_type (P, 0, 0) argument
74 #define make_unsigned_accum_type(P) make_accum_type (P, 1, 0) argument
75 #define make_sat_signed_accum_type(P) make_accum_type (P, 0, 1) argument
76 #define make_sat_unsigned_accum_type(P) make_accum_type (P, 1, 1) argument
78 #define make_or_reuse_signed_fract_type(P) \ argument
80 #define make_or_reuse_unsigned_fract_type(P) \ argument
[all …]
/dflybsd-src/contrib/grep/lib/
H A Dfilename.h34 # define HAS_DEVICE(P) \ argument
37 # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P)) argument
38 # define IS_PATH_WITH_DIR(P) \ argument
40 # define FILE_SYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0) argument
/dflybsd-src/contrib/gcc-4.7/include/
H A Dlibiberty.h353 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
354 #define XDELETE(P) free ((void*) (P)) argument
361 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
362 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
363 #define XDELETEVEC(P) free ((void*) (P)) argument
370 #define XDUPVAR(T, P, S1, S2) ((T *) xmemdup ((P), (S1), (S2))) argument
371 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S))) argument
/dflybsd-src/contrib/binutils-2.27/include/
H A Dlibiberty.h351 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
352 #define XDELETE(P) free ((void*) (P)) argument
359 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
360 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
361 #define XDELETEVEC(P) free ((void*) (P)) argument
368 #define XDUPVAR(T, P, S1, S2) ((T *) xmemdup ((P), (S1), (S2))) argument
369 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S))) argument
/dflybsd-src/contrib/gdb-7/include/
H A Dlibiberty.h344 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
345 #define XDELETE(P) free ((void*) (P)) argument
352 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
353 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
354 #define XDELETEVEC(P) free ((void*) (P)) argument
361 #define XDUPVAR(T, P, S1, S2) ((T *) xmemdup ((P), (S1), (S2))) argument
362 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S))) argument
/dflybsd-src/contrib/binutils-2.34/include/
H A Dlibiberty.h360 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
361 #define XDELETE(P) free ((void*) (P)) argument
368 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
369 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
370 #define XDELETEVEC(P) free ((void*) (P)) argument
377 #define XDUPVAR(T, P, S1, S2) ((T *) xmemdup ((P), (S1), (S2))) argument
378 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S))) argument
/dflybsd-src/contrib/gcc-8.0/include/
H A Dlibiberty.h351 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
352 #define XDELETE(P) free ((void*) (P)) argument
359 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
360 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
361 #define XDELETEVEC(P) free ((void*) (P)) argument
368 #define XDUPVAR(T, P, S1, S2) ((T *) xmemdup ((P), (S1), (S2))) argument
369 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S))) argument
/dflybsd-src/contrib/bmake/
H A Dsetenv.c64 register char **P, *C; local
104 register char **P; local
145 register char **P; local
/dflybsd-src/sys/sys/
H A Drtprio.h58 #define RTP_PRIO_BASE(P) ((P) & ~RTP_PRIO_FIFO_BIT) argument
59 #define RTP_PRIO_IS_REALTIME(P) (RTP_PRIO_BASE(P) == RTP_PRIO_REALTIME) argument
60 #define RTP_PRIO_NEED_RR(P) ((P) != RTP_PRIO_FIFO) argument
/dflybsd-src/lib/libc/db/hash/
H A Dpage.h77 #define FREESPACE(P) ((P)[(P)[0]+1]) argument
78 #define OFFSET(P) ((P)[(P)[0]+2]) argument
79 #define PAIRFITS(P,K,D) \ argument
/dflybsd-src/contrib/openbsd_libm/src/
H A Dpolevll.c75 long double *P; in __polevll() local
94 long double *P; in __p1evll() local
/dflybsd-src/contrib/mpfr/src/
H A Dconst_catalan.c38 S (mpz_t T, mpz_t P, mpz_t Q, unsigned long n1, unsigned long n2) in S()
88 mpz_t T, P, Q; in mpfr_const_catalan_internal() local
H A Dconst_log2.c49 S (mpz_t *T, mpz_t *P, mpz_t *Q, unsigned long n1, unsigned long n2, int need_P) in S()
117 mpz_t *T, *P, *Q; in mpfr_const_log2_internal() local
H A Dconst_euler.c98 mpfr_const_euler_S2_aux (mpz_t P, mpz_t Q, mpz_t T, unsigned long n, in mpfr_const_euler_S2_aux()
157 mpz_t P, Q, T; in mpfr_const_euler_S2() local
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dipa-ref-inline.h116 #define ipa_ref_list_reference_iterate(L,I,P) \ argument
118 #define ipa_ref_list_refering_iterate(L,I,P) \ argument
H A Dvec.h191 #define VEC_iterate(T,V,I,P) (VEC_OP(T,base,iterate)(VEC_BASE(V),I,&(P))) argument
195 #define FOR_EACH_VEC_ELT(T, V, I, P) \ argument
200 #define FOR_EACH_VEC_ELT_FROM(T, V, I, P, FROM) \ argument
205 #define FOR_EACH_VEC_ELT_REVERSE(T,V,I,P) \ argument
553 #define VEC_BASE(P) \ argument
556 #define VEC_BASE(P) ((P) ? &(P)->base : 0) argument
/dflybsd-src/contrib/libarchive/libarchive/
H A Darchive_blake2sp_ref.c38 static int blake2sp_init_leaf_param( blake2s_state *S, const blake2s_param *P ) in blake2sp_init_leaf_param()
47 blake2s_param P[1]; in blake2sp_init_leaf() local
64 blake2s_param P[1]; in blake2sp_init_root() local
H A Darchive_blake2s_ref.c78 int blake2s_init_param( blake2s_state *S, const blake2s_param *P ) in blake2s_init_param()
97 blake2s_param P[1]; in blake2s_init() local
119 blake2s_param P[1]; in blake2s_init_key() local
/dflybsd-src/contrib/openbsd_libm/src/ld80/
H A Ds_erfl.c251 long double R, S, P, Q, s, y, z, r; in erfl() local
332 long double R, S, P, Q, s, y, z, r; in erfcl() local
/dflybsd-src/contrib/elftoolchain/libelf/
H A Dlibelf_ar.c280 #define GET_LONG(P, V)do { \ argument
387 #define GET_WORD(P, V) do { \ argument
/dflybsd-src/crypto/libressl/crypto/bf/
H A Dbf_locl.h193 #define BF_ENC(LL,R,S,P) ( \ argument
210 #define BF_ENC(LL,R,S,P) ( \ argument
/dflybsd-src/lib/libutil/
H A Dauth.c43 static properties P; variable
/dflybsd-src/sys/kern/
H A Dkern_sched.c94 #define p4prio_to_rtpprio(P) (RTP_PRIO_MAX - (P)) argument
95 #define rtpprio_to_p4prio(P) (RTP_PRIO_MAX - (P)) argument
/dflybsd-src/gnu/usr.bin/rcs/lib/
H A Dmaketime.c36 # define P(x) x macro
39 # define P(x) () macro
/dflybsd-src/lib/libcrypt/
H A Dblowfish.h56 u_int32_t P[BLF_N + 2]; /* Subkeys */ member

123456