Home
last modified time | relevance | path

Searched defs:p (Results 1 – 25 of 2770) sorted by relevance

12345678910>>...111

/illumos-gate/usr/src/cmd/nscd/
H A Dnscd_initf.c32 _nss_initf_passwd(nss_db_params_t *p) in _nss_initf_passwd()
39 _nss_initf_hosts(nss_db_params_t *p) in _nss_initf_hosts()
46 _nss_initf_group(nss_db_params_t *p) in _nss_initf_group()
53 _nss_initf_ipnodes(nss_db_params_t *p) in _nss_initf_ipnodes()
60 _nss_initf_net(nss_db_params_t *p) in _nss_initf_net()
67 _nss_initf_proto(nss_db_params_t *p) in _nss_initf_proto()
74 _nss_initf_rpc(p) in _nss_initf_rpc() argument
82 _nss_initf_ethers(nss_db_params_t *p) in _nss_initf_ethers()
89 _nss_initf_netmasks(nss_db_params_t *p) in _nss_initf_netmasks()
96 _nss_initf_bootparams(nss_db_params_t *p) in _nss_initf_bootparams()
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/backend/
H A Dpointer-add.c1 char *caddv(char *p, int o) { char *r = p; r = r + o; return r; } in caddv()
2 void *vaddv(void *p, int o) { void *r = p; r = r + o; return r; } in vaddv()
3 int *iaddv(int *p, int o) { int *r = p; r = r + o; return r; } in iaddv()
5 char *caddc(char *p, int o) { char *r = p; r = r + 3; return r; } in caddc()
6 void *vaddc(void *p, int o) { void *r = p; r = r + 3; return r; } in vaddc()
7 int *iaddc(int *p, int o) { int *r = p; r = r + 3; return r; } in iaddc()
9 char *cincv(char *p, int o) { char *r = p; r += o; return r; } in cincv()
10 void *vincv(void *p, int o) { void *r = p; r += o; return r; } in vincv()
11 int *iincv(int *p, int o) { int *r = p; r += o; return r; } in iincv()
13 char *cincc(char *p, int o) { char *r = p; r += 3; return r; } in cincc()
[all …]
H A Dpointer-sub.c1 long subv0(void *p, int a) { return p - ((void*)0); } in subv0()
2 long subvc(void *p, int a) { return p - ((void*)8); } in subvc()
3 long subva(void *p, int a) { return p - ((void*)a); } in subva()
4 long subvq(void *p, void *q) { return p - q; } in subvq()
6 long subi0(int *p, int a) { return p - ((int *)0); } in subi0()
7 long subic(int *p, int a) { return p - ((int *)8); } in subic()
8 long subia(int *p, int a) { return p - ((int *)a); } in subia()
9 long subiq(int *p, int *q) { return p - q; } in subiq()
11 long subvm3(void *p, int a) { return (p - ((void*)0)) * 3; } in subvm3()
12 long subvx3(void *p, int a) { return (p - ((void*)0)) ^ 3; } in subvx3()
H A Dcompare-with-null.c1 int tstv(void *p) { return !p; } in tstv()
2 int cmpv(void *p) { return p == ((void*)0); } in cmpv()
4 int tsti(int *p) { return !p; } in tsti()
5 int cmpi(int *p) { return p == ((int *)0); } in cmpi()
6 int cmpx(int *p) { return p == ((void*)0); } in cmpx()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/include/
H A Daso.h107 #define asocaschar(p,o,n) asocas8(p,o,n) argument
108 #define asogetchar(p) asoget8(p) argument
109 #define asoincchar(p) asoinc8(p) argument
110 #define asodecchar(p) asodec8(p) argument
117 #define asocasshort(p,o,n) asocas16(p,o,n) argument
118 #define asogetshort(p) asoget16(p) argument
119 #define asoincshort(p) asoinc16(p) argument
120 #define asodecshort(p) asodec16(p) argument
128 #define asocasint(p,o,n) asocas32((uint32_t volatile*)p,o,n) argument
129 #define asogetint(p) asoget32((uint32_t volatile*)p) argument
[all …]
H A Dfs3d.h36 #define iview(p) ((p)->st_spare1) argument
37 #define IVIEW(p,v) ((p)->st_spare1=(v)) argument
40 #define iview(p) ((p)->st_spare4[0]) argument
41 #define IVIEW(p,v) ((p)->st_spare4[0]=(v)) argument
44 #define iview(p) ((p)->st_extra[0]) argument
45 #define IVIEW(p,v) ((p)->st_extra[0]=(v)) argument
48 #define iview(p) ((p)->st_pad4[0]) argument
49 #define IVIEW(p,v) ((p)->st_pad4[0]=(v)) argument
52 #define iview(p) ((S_ISBLK((p)->st_mode)||S_ISCHR((p)->st_mode))?0:(p)->st_rdev) argument
53 #define IVIEW(p,v) do{if(!S_ISBLK((p)->st_mode)&&!S_ISCHR((p)->st_mode))(p)->st_rdev=(v);}while(0) argument
[all …]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbeaux.c37 Vdbe *p; in sqliteVdbeCreate() local
54 void sqliteVdbeTrace(Vdbe *p, FILE *trace){ in sqliteVdbeTrace()
74 int sqliteVdbeAddOp(Vdbe *p, int op, int p1, int p2){ in sqliteVdbeAddOp()
111 int sqliteVdbeOp3(Vdbe *p, int op, int p1, int p2, const char *zP3, int p3type){ in sqliteVdbeOp3()
120 int sqliteVdbeCode(Vdbe *p, ...){ in sqliteVdbeCode()
149 int sqliteVdbeMakeLabel(Vdbe *p){ in sqliteVdbeMakeLabel()
176 void sqliteVdbeResolveLabel(Vdbe *p, int x){ in sqliteVdbeResolveLabel()
192 int sqliteVdbeCurrentAddr(Vdbe *p){ in sqliteVdbeCurrentAddr()
201 int sqliteVdbeAddOpList(Vdbe *p, int nOp, VdbeOpList const *aOp){ in sqliteVdbeAddOpList()
245 void sqliteVdbeChangeP1(Vdbe *p, int addr, int val){ in sqliteVdbeChangeP1()
[all …]
/illumos-gate/usr/src/cmd/mandoc/
H A Dterm.c47 term_setcol(struct termp *p, size_t maxtcol) in term_setcol()
59 term_free(struct termp *p) in term_free()
69 term_begin(struct termp *p, term_margin head, in term_begin()
80 term_end(struct termp *p) in term_end()
94 term_flushln(struct termp *p) in term_flushln()
253 term_fill(struct termp *p, size_t *nbr, size_t *vbr, size_t vtarget) in term_fill()
350 term_field(struct termp *p, size_t vbl, size_t nbr) in term_field()
412 endline(struct termp *p) in endline()
436 term_newln(struct termp *p) in term_newln()
451 term_vspace(struct termp *p) in term_vspace()
[all …]
H A Dterm_ascii.c68 struct termp *p; in ascii_init() local
163 ascii_setwidth(struct termp *p, int iop, int width) in ascii_setwidth()
185 struct termp *p; in terminal_sepline() local
197 ascii_width(const struct termp *p, int c) in ascii_width()
210 ascii_letter(struct termp *p, int c) in ascii_letter()
217 ascii_begin(struct termp *p) in ascii_begin()
224 ascii_end(struct termp *p) in ascii_end()
231 ascii_endline(struct termp *p) in ascii_endline()
244 ascii_advance(struct termp *p, size_t len) in ascii_advance()
261 ascii_hspan(const struct termp *p, const struct roffsu *su) in ascii_hspan()
[all …]
H A Dterm_ps.c44 #define PNT2AFM(p, x) \ argument
48 #define AFM2PNT(p, x) \ argument
529 struct termp *p; in pspdf_alloc() local
626 ps_setwidth(struct termp *p, int iop, int width) in ps_setwidth()
645 struct termp *p; in pspdf_free() local
657 ps_printf(struct termp *p, const char *fmt, ...) in ps_printf()
694 ps_putchar(struct termp *p, char c) in ps_putchar()
714 pdf_obj(struct termp *p, size_t obj) in pdf_obj()
730 ps_closepage(struct termp *p) in ps_closepage()
781 ps_end(struct termp *p) in ps_end()
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/optim/
H A Dcanonical-cmp.c4 sint seq(sint p, sint a) { return (123 == p) ? a : 0; } in seq()
5 sint sne(sint p, sint a) { return (123 != p) ? a : 0; } in sne()
7 sint slt(sint p, sint a) { return (123 > p) ? a : 0; } in slt()
8 sint sle(sint p, sint a) { return (123 >= p) ? a : 0; } in sle()
9 sint sge(sint p, sint a) { return (123 <= p) ? a : 0; } in sge()
10 sint sgt(sint p, sint a) { return (123 < p) ? a : 0; } in sgt()
12 uint ueq(uint p, uint a) { return (123 == p) ? a : 0; } in ueq()
13 uint une(uint p, uint a) { return (123 != p) ? a : 0; } in une()
15 uint ubt(uint p, uint a) { return (123 > p) ? a : 0; } in ubt()
16 uint ube(uint p, uint a) { return (123 >= p) ? a : 0; } in ube()
[all …]
/illumos-gate/usr/src/compat/bhyve/amd64/machine/
H A Datomic.h21 atomic_load_acq_short(volatile u_short *p) in atomic_load_acq_short()
32 atomic_load_acq_int(volatile u_int *p) in atomic_load_acq_int()
43 atomic_load_acq_long(volatile u_long *p) in atomic_load_acq_long()
54 atomic_store_rel_int(volatile u_int *p, u_int v) in atomic_store_rel_int()
61 atomic_store_rel_long(volatile u_long *p, u_long v) in atomic_store_rel_long()
111 atomic_testandset_int(volatile u_int *p, u_int v) in atomic_testandset_int()
132 atomic_fetchadd_int(volatile u_int *p, u_int v) in atomic_fetchadd_int()
147 atomic_set_int(volatile u_int *p, u_int v) in atomic_set_int()
157 atomic_clear_int(volatile u_int *p, u_int v) in atomic_clear_int()
167 atomic_subtract_int(volatile u_int *p, u_int v) in atomic_subtract_int()
[all …]
/illumos-gate/usr/src/cmd/fs.d/udfs/mkfs/
H A Dudfslib.c273 ud_swap_ext_ad(struct extent_ad *p) in ud_swap_ext_ad()
282 ud_swap_regid(struct regid *p) in ud_swap_regid()
287 ud_swap_icb_tag(struct icb_tag *p) in ud_swap_icb_tag()
299 ud_swap_short_ad(struct short_ad *p) in ud_swap_short_ad()
306 ud_swap_long_ad(struct long_ad *p) in ud_swap_long_ad()
314 ud_swap_pri_vol_desc(struct pri_vol_desc *p) in ud_swap_pri_vol_desc()
334 ud_swap_iuvd(struct iuvd_desc *p) in ud_swap_iuvd()
342 ud_swap_vdp(struct vol_desc_ptr *p) in ud_swap_vdp()
349 ud_swap_avdp(struct anch_vol_desc_ptr *p) in ud_swap_avdp()
356 ud_swap_part_desc(struct part_desc *p) in ud_swap_part_desc()
[all …]
/illumos-gate/usr/src/common/lzma/
H A DLzFind.c22 static void LzInWindow_Free(CMatchFinder *p, ISzAlloc *alloc) in LzInWindow_Free()
33 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc) in LzInWindow_Create()
50 Byte *MatchFinder_GetPointerToCurrentPos(CMatchFinder *p) { return p->buffer; } in MatchFinder_GetPointerToCurrentPos()
51 Byte MatchFinder_GetIndexByte(CMatchFinder *p, Int32 index) { return p->buffer[index]; } in MatchFinder_GetIndexByte()
53 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; } in MatchFinder_GetNumAvailableBytes()
55 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) in MatchFinder_ReduceOffsets()
62 static void MatchFinder_ReadBlock(CMatchFinder *p) in MatchFinder_ReadBlock()
86 void MatchFinder_MoveBlock(CMatchFinder *p) in MatchFinder_MoveBlock()
94 int MatchFinder_NeedMove(CMatchFinder *p) in MatchFinder_NeedMove()
100 void MatchFinder_ReadIfRequired(CMatchFinder *p) in MatchFinder_ReadIfRequired()
[all …]
/illumos-gate/usr/src/uts/sun4v/promif/
H A Dpromif_mon.c38 #define PIL_DECL(p) argument
39 #define PIL_SET7(p) argument
40 #define PIL_REST(p) argument
47 #define PIL_DECL(p) int p argument
48 #define PIL_SET7(p) (p = spl7()) argument
49 #define PIL_REST(p) (splx(p)) argument
64 promif_exit_to_mon(void *p) in promif_exit_to_mon()
89 promif_enter_mon(void *p) in promif_enter_mon()
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/
H A Dutil.c51 char *p; in strnormalize() local
74 char *p; in strtrim() local
91 char *p; in strlower() local
130 in_string_set(char *p, char *set) in in_string_set()
162 strend(char *p) in strend()
171 lastspace(char *p) in lastspace()
187 skipb(char *p) in skipb()
199 nextb(char *p) in nextb()
211 skipsep(char *p) in skipsep()
227 nextsep(char *p) in nextsep()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/astsa/
H A Dsfstr.c27 #define VALID(p,f) ((p=(Sfstr_t*)f)>=&strs[0]&&p<&strs[elementsof(strs)]) argument
32 extend(Sfstr_t* p, int n) in extend()
50 Sfstr_t* p; in sfclose() local
66 Sfstr_t* p; in sfprintf() local
99 Sfstr_t* p; in sfputc() local
117 Sfstr_t* p; in sfputr() local
144 Sfstr_t* p; in sfstrbase() local
154 Sfstr_t* p; in sfstropen() local
171 #define _sf_strseek(f,p,m) \ argument
188 Sfstr_t* p; in sfstrseek() local
[all …]
/illumos-gate/usr/src/compat/bhyve/sys/
H A Dendian.h23 uint8_t const *p = (uint8_t const *)pp; in be16dec() local
31 uint8_t const *p = (uint8_t const *)pp; in be32dec() local
39 uint8_t const *p = (uint8_t const *)pp; in be64dec() local
47 uint8_t const *p = (uint8_t const *)pp; in le16dec() local
55 uint8_t const *p = (uint8_t const *)pp; in le32dec() local
63 uint8_t const *p = (uint8_t const *)pp; in le64dec() local
71 uint8_t *p = (uint8_t *)pp; in be16enc() local
80 uint8_t *p = (uint8_t *)pp; in be32enc() local
91 uint8_t *p = (uint8_t *)pp; in be64enc() local
100 uint8_t *p = (uint8_t *)pp; in le16enc() local
[all …]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dutf8.c58 size_t krb5int_utf8_bytes(const char *p) in krb5int_utf8_bytes()
68 size_t krb5int_utf8_chars(const char *p) in krb5int_utf8_chars()
79 size_t krb5int_utf8c_chars(const char *p, size_t length) in krb5int_utf8c_chars()
92 int krb5int_utf8_offset(const char *p) in krb5int_utf8_offset()
110 int krb5int_utf8_charlen(const char *p) in krb5int_utf8_charlen()
150 int krb5int_utf8_charlen2(const char *p) in krb5int_utf8_charlen2()
166 int krb5int_utf8_to_ucs4(const char *p, krb5_ucs4 *out) in krb5int_utf8_to_ucs4()
194 int krb5int_utf8_to_ucs2(const char *p, krb5_ucs2 *out) in krb5int_utf8_to_ucs2()
209 unsigned char *p = (unsigned char *) buf; in krb5int_ucs4_to_utf8() local
275 char *krb5int_utf8_next(const char *p) in krb5int_utf8_next()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dproc.c37 proc_t *p, in installpctx()
63 proc_t *p, in removepctx()
97 savepctx(proc_t *p) in savepctx()
108 restorepctx(proc_t *p) in restorepctx()
119 forkpctx(proc_t *p, proc_t *cp) in forkpctx()
136 exitpctx(proc_t *p) in exitpctx()
149 freepctx(proc_t *p, int isexec) in freepctx()
164 secflag_enabled(proc_t *p, secflag_t flag) in secflag_enabled()
170 secflags_promote(proc_t *p) in secflags_promote()
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dptr-inherit.c12 int *p = &o; /* check-should-fail */ in test_const() local
18 int *p = &o; /* check-should-fail */ in test_volatile() local
24 int *p = &o; /* check-should-fail */ in test_noderef() local
30 int *p = &o; /* check-should-fail */ in test_bitwise() local
36 int *p = &o; /* check-should-fail */ in test_user() local
42 int __nocast *p = &o; /* check-should-pass */ in test_nocast() local
50 int *p = &o; /* check-should-pass */ in test_static() local
57 int *p = &o; /* check-should-pass */ in test_tls() local
/illumos-gate/usr/src/lib/libc/port/regex/
H A Dregcomp.c205 struct parse *p = &pa; in regcomp() local
353 p_ere_exp(struct parse *p, struct branchc *bc) in p_ere_exp()
517 p_str(struct parse *p) in p_str()
529 p_branch_eat_delim(struct parse *p, struct branchc *bc) in p_branch_eat_delim()
545 p_branch_ins_offset(struct parse *p, struct branchc *bc) in p_branch_ins_offset()
566 p_branch_fix_tail(struct parse *p, struct branchc *bc) in p_branch_fix_tail()
582 p_branch_empty(struct parse *p, struct branchc *bc) in p_branch_empty()
595 p_branch_do(struct parse *p, struct branchc *bc) in p_branch_do()
615 p_bre_pre_parse(struct parse *p, struct branchc *bc) in p_bre_pre_parse()
631 p_bre_post_parse(struct parse *p, struct branchc *bc) in p_bre_post_parse()
[all …]
/illumos-gate/usr/src/uts/common/inet/
H A Dcommon.h81 #define ABE32_TO_U32(p) (*((uint32_t *)p)) argument
82 #define ABE16_TO_U16(p) (*((uint16_t *)p)) argument
83 #define U16_TO_ABE16(u, p) (*((uint16_t *)p) = (u)) argument
84 #define U32_TO_ABE16(u, p) U16_TO_ABE16(u, p) argument
85 #define U32_TO_ABE32(u, p) (*((uint32_t *)p) = (u)) argument
87 #define ABE16_TO_U16(p) BE16_TO_U16(p) argument
88 #define ABE32_TO_U32(p) BE32_TO_U32(p) argument
89 #define U16_TO_ABE16(u, p) U16_TO_BE16(u, p) argument
90 #define U32_TO_ABE16(u, p) U16_TO_ABE16(u, p) argument
91 #define U32_TO_ABE32(u, p) U32_TO_BE32(u, p) argument
/illumos-gate/usr/src/cmd/dc/
H A Ddc.c97 struct blk *p, *q; in commnds() local
781 struct blk *p, *divd, *divr; in dcdiv() local
976 removr(struct blk *p, int n) in removr()
1022 sqrt(struct blk *p) in sqrt()
1077 struct blk *r, *e, *p, *e1, *t, *cp; in exp() local
1229 pushp(struct blk *p) in pushp()
1252 struct blk *p, *q; in readin() local
1317 add0(struct blk *p, int ct) in add0()
1340 mult(struct blk *p, struct blk *q) in mult()
1398 chsign(struct blk *p) in chsign()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libsum/
H A Dsumlib.c80 Integral_t* p; in long_open() local
91 long_init(Sum_t* p) in long_init()
98 long_done(Sum_t* p) in long_done()
107 short_done(Sum_t* p) in short_done()
116 long_print(Sum_t* p, Sfio_t* sp, register int flags, size_t scale) in long_print()
138 long_data(Sum_t* p, Sumdata_t* data) in long_data()
238 match(register const char* s, register const char* p) in match()
295 suminit(Sum_t* p) in suminit()
306 sumblock(Sum_t* p, const void* buf, size_t siz) in sumblock()
317 sumdone(Sum_t* p) in sumdone()
[all …]

12345678910>>...111