Searched refs:set (Results 26 - 50 of 1536) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/kgssapi/
H A Dgss_create_empty_oid_set.c43 gss_OID_set set; local
48 set = malloc(sizeof(gss_OID_set_desc), M_GSSAPI, M_WAITOK);
50 set->count = 0;
51 set->elements = 0;
52 *oid_set = set;
H A Dgss_add_oid_set_member.c45 gss_OID_set set = *oid_set; local
59 new_elements = malloc((set->count + 1) * sizeof(gss_OID_desc),
62 new_oid = &new_elements[set->count];
67 if (set->elements) {
68 memcpy(new_elements, set->elements,
69 set->count * sizeof(gss_OID_desc));
70 free(set->elements, M_GSSAPI);
72 set->elements = new_elements;
73 set->count++;
/freebsd-11-stable/sys/kern/
H A Dkern_cpuset.c74 * Each process belongs to an identified set, by default this is set 1. Each
76 * named set. This creates an anonymous set which other threads and processes
79 * The named set is referred to herein as the 'base' set to avoid ambiguity.
80 * This set is usually a child of a 'root' set while the anonymous set may
84 * Threads inherit their set fro
127 cpuset_ref(struct cpuset *set) argument
139 cpuset_refroot(struct cpuset *set) argument
156 cpuset_refbase(struct cpuset *set) argument
170 cpuset_rel(struct cpuset *set) argument
193 cpuset_rel_defer(struct setlist *head, struct cpuset *set) argument
211 cpuset_rel_complete(struct cpuset *set) argument
224 struct cpuset *set; local
259 _cpuset_create(struct cpuset *set, struct cpuset *parent, const cpuset_t *mask, cpusetid_t id) argument
289 struct cpuset *set; local
312 cpuset_testupdate(struct cpuset *set, cpuset_t *mask, int check_mask) argument
339 cpuset_update(struct cpuset *set, cpuset_t *mask) argument
357 cpuset_modify(struct cpuset *set, cpuset_t *mask) argument
408 struct cpuset *set; local
489 cpuset_shadow(struct cpuset *set, struct cpuset *fset, const cpuset_t *mask) argument
516 cpuset_setproc(pid_t pid, struct cpuset *set, cpuset_t *mask) argument
636 cpusetobj_strprint(char *buf, const cpuset_t *set) argument
659 cpusetobj_strscan(cpuset_t *set, const char *buf) argument
698 struct cpuset *set; local
835 struct cpuset *set; local
893 struct cpuset *set; local
914 cpuset_setproc_update_set(struct proc *p, struct cpuset *set) argument
954 struct cpuset *set; local
989 struct cpuset *set; local
1026 struct cpuset *set; local
1094 struct cpuset *set; local
1211 struct cpuset *set; local
1318 ddb_display_cpuset(const cpuset_t *set) argument
1337 struct cpuset *set; local
[all...]
/freebsd-11-stable/contrib/sendmail/libmilter/
H A Dsignal.c5 * By using this file, you agree to the terms and conditions set
43 ** MI_STOP_MILTERS -- set value of MilterStop
94 sigset_t set; local
96 (void) sigemptyset(&set);
97 (void) sigaddset(&set, SIGHUP);
98 (void) sigaddset(&set, SIGTERM);
101 (void) sigaddset(&set, SIGINT);
108 if ((sig = sigwait(&set)) < 0)
110 if ((sigerr = sigwait(&set, &sig)) != 0)
113 /* some OS return -1 and set errn
166 sigset_t set; local
[all...]
/freebsd-11-stable/lib/libgssapi/
H A Dgss_indicate_mechs.c39 gss_OID_set set; local
50 major_status = m->gm_indicate_mechs(minor_status, &set);
53 if (set == GSS_C_NO_OID_SET) {
59 for (i = 0; i < set->count; i++)
61 &set->elements[i], mech_set);
62 gss_release_oid_set(minor_status, &set);
H A Dgss_add_oid_set_member.c40 gss_OID_set set = *oid_set; local
54 new_elements = malloc((set->count + 1) * sizeof(gss_OID_desc));
60 new_oid = &new_elements[set->count];
69 if (set->elements) {
70 memcpy(new_elements, set->elements,
71 set->count * sizeof(gss_OID_desc));
72 free(set->elements);
74 set->elements = new_elements;
75 set->count++;
/freebsd-11-stable/lib/libc/gen/
H A Dsigsetops.c42 sigaddset(sigset_t *set, int signo) argument
49 set->__bits[_SIG_WORD(signo)] |= _SIG_BIT(signo);
54 sigdelset(sigset_t *set, int signo) argument
61 set->__bits[_SIG_WORD(signo)] &= ~_SIG_BIT(signo);
66 sigemptyset(sigset_t *set) argument
71 set->__bits[i] = 0;
76 sigfillset(sigset_t *set) argument
81 set->__bits[i] = ~0U;
106 sigisemptyset(const sigset_t *set) argument
111 if (set
117 sigismember(const sigset_t *set, int signo) argument
[all...]
/freebsd-11-stable/contrib/gcc/config/mips/
H A Dmips16.S42 .set nomips16
60 .set noreorder; \
68 .set reorder; \
86 .set noreorder; \
93 .set reorder; \
159 .set noreorder
166 .set reorder
172 .set noreorder
179 .set reorder
236 .set noreorde
[all...]
/freebsd-11-stable/stand/mips/beri/boot2/
H A Dstart.S33 .set mips64
34 .set noreorder
35 .set nobopt
36 .set noat
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DInstructionSelect.h36 .set(MachineFunctionProperties::Property::IsSSA)
37 .set(MachineFunctionProperties::Property::Legalized)
38 .set(MachineFunctionProperties::Property::RegBankSelected);
42 return MachineFunctionProperties().set(
/freebsd-11-stable/contrib/gcc/
H A Ddfp.c58 /* Initialize R (a real with the decimal flag set) from DN. Can
95 decContext set; local
96 decContextDefault (&set, DEC_INIT_DECIMAL128);
97 set.traps = 0;
99 decNumberFromString (&dn, (char *) s, &set);
104 decimal_from_decnumber (r, &dn, &set);
112 decContext set; local
113 decContextDefault (&set, DEC_INIT_DECIMAL128);
114 set.traps = 0;
122 decNumberFromString (dn, (char *)"Infinity", &set);
151 decContext set; local
173 decContext set; local
195 decContext set; local
223 decContext set; local
250 decContext set; local
283 decContext set; local
344 decContext set; local
386 decContext set; local
467 decContext set; local
493 decContext set; local
515 decContext set; local
538 decContext set; local
554 decContext set; local
581 decContext set; local
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dsigsetmask.c8 @deftypefn Supplemental int sigsetmask (int @var{set})
10 Sets the signal mask to the one provided in @var{set} and returns
28 sigsetmask (int set) argument
34 if (set != 0) {
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dsigsetmask.c8 @deftypefn Supplemental int sigsetmask (int @var{set})
10 Sets the signal mask to the one provided in @var{set} and returns
28 sigsetmask (int set) argument
34 if (set != 0) {
/freebsd-11-stable/sys/amd64/amd64/
H A Dlocore.S40 .set kernbase,KERNBASE
41 .set loc_PTmap,addr_PTmap
42 .set loc_PDmap,addr_PDmap
43 .set loc_PDPmap,addr_PDPmap
44 .set loc_PML4map,addr_PML4map
45 .set loc_PML4pml4e,addr_PML4pml4e
46 .set dmapbase,DMAP_MIN_ADDRESS
47 .set dmapend,DMAP_MAX_ADDRESS
52 * This is where the loader trampoline start us, set the ball rolling...
79 call hammer_time /* set u
[all...]
/freebsd-11-stable/lib/libc/string/
H A Dwcspbrk.c40 wcspbrk(const wchar_t *s, const wchar_t *set) argument
47 q = set;
/freebsd-11-stable/lib/libc/sys/
H A Dsigprocmask.c45 sigprocmask(int how, const sigset_t *set, sigset_t *oset) argument
49 __libc_interposing[INTERPOS_sigprocmask])(how, set, oset));
H A Dsigsuspend.c45 sigsuspend(const sigset_t *set) argument
49 __libc_interposing[INTERPOS_sigsuspend])(set));
H A Dsigtimedwait.c44 sigtimedwait(const sigset_t * __restrict set, siginfo_t * __restrict info, argument
50 __libc_interposing[INTERPOS_sigtimedwait])(set, info, t));
H A Dsigwaitinfo.c44 sigwaitinfo(const sigset_t * __restrict set, siginfo_t * __restrict info) argument
48 __libc_interposing[INTERPOS_sigwaitinfo])(set, info));
/freebsd-11-stable/lib/csu/mips/
H A Dcrtn.S6 .set noreorder
13 .set reorder
17 .set noreorder
24 .set reorder
/freebsd-11-stable/sys/mips/cavium/
H A Dasm_octeon.S31 .set noreorder
39 .set push
40 .set mips32r2
43 .set pop
/freebsd-11-stable/sbin/ipfw/
H A Dnat64stl.c54 uint8_t set);
55 static int nat64stl_foreach(nat64stl_cb_t *f, const char *name, uint8_t set,
58 static void nat64stl_create(const char *name, uint8_t set, int ac, char **av);
59 static void nat64stl_config(const char *name, uint8_t set, int ac, char **av);
60 static void nat64stl_destroy(const char *name, uint8_t set);
61 static void nat64stl_stats(const char *name, uint8_t set);
62 static void nat64stl_reset_stats(const char *name, uint8_t set);
64 uint8_t set);
66 uint8_t set);
98 /* Bits 64 to 71 must be set t
129 uint8_t set; local
184 nat64stl_fill_ntlv(ipfw_obj_ntlv *ntlv, const char *name, uint8_t set) argument
214 nat64stl_create(const char *name, uint8_t set, int ac, char *av[]) argument
303 nat64stl_config(const char *name, uint8_t set, int ac, char **av) argument
367 nat64stl_destroy(const char *name, uint8_t set) argument
383 nat64stl_get_stats(const char *name, uint8_t set, struct ipfw_nat64stl_stats *stats) argument
404 nat64stl_stats(const char *name, uint8_t set) argument
442 nat64stl_reset_stats(const char *name, uint8_t set) argument
453 nat64stl_show_cb(ipfw_nat64stl_cfg *cfg, const char *name, uint8_t set) argument
479 nat64stl_destroy_cb(ipfw_nat64stl_cfg *cfg, const char *name, uint8_t set) argument
517 nat64stl_foreach(nat64stl_cb_t *f, const char *name, uint8_t set, int sort) argument
[all...]
/freebsd-11-stable/crypto/heimdal/lib/gssapi/mech/
H A Dgss_indicate_mechs.c37 gss_OID_set set; local
49 minor_status, &set);
52 for (i = 0; i < set->count; i++)
54 minor_status, &set->elements[i], mech_set);
55 gss_release_oid_set(minor_status, &set);
/freebsd-11-stable/tools/regression/sigqueue/sigqtest1/
H A Dsigqtest1.c27 sigset_t set; local
33 sigemptyset(&set);
34 sigaddset(&set, SIGRTMIN);
35 sigprocmask(SIG_BLOCK, &set, NULL);
48 sigprocmask(SIG_UNBLOCK, &set, NULL);
/freebsd-11-stable/stand/i386/btx/btxldr/
H A Dbtxldr.S31 .set MEM_STUB,0x600 # Real mode stub
32 .set MEM_ESP,0x1000 # New stack pointer
33 .set MEM_TBL,0x5000 # BTX page tables
34 .set MEM_ENTRY,0x9010 # BTX entry point
35 .set MEM_DATA,start+0x1000 # Data segment
39 .set SEL_SCODE,0x8 # 4GB code
40 .set SEL_SDATA,0x10 # 4GB data
41 .set SEL_RCODE,0x18 # 64K code
42 .set SEL_RDATA,0x20 # 64K data
46 .set PAG_SI
[all...]

Completed in 280 milliseconds

1234567891011>>