Searched refs:set (Results 1 - 25 of 1005) sorted by relevance

1234567891011>>

/src/games/sail/
H A Dmachdep.h39 sigset_t set; \
40 sigemptyset(&set); \
41 sigaddset(&set, SIGALRM); \
42 sigprocmask(SIG_BLOCK, &set, (sigset_t *)0); \
46 sigset_t set; \
47 sigemptyset(&set); \
48 sigaddset(&set, SIGALRM); \
49 sigprocmask(SIG_UNBLOCK, &set, (sigset_t *)0); \
/src/sys/external/bsd/acpica/dist/generate/lint/
H A Dlset.bat0 set path=%PATH%;$G
/src/bin/sh/
H A Dsyntax.c16 #define set(ch, val) [ndx(ch)] = val, macro
23 set('\n', CNL)
24 set('\\', CBACK)
25 set('\'', CSQUOTE)
26 set('"', CDQUOTE)
27 set('`', CBQUOTE)
28 set('$', CVAR)
29 set('}', CENDVAR)
30 set('<', CSPCL)
31 set('>', CSPC
[all...]
/src/sys/arch/mips/include/
H A Dsb1regs.h43 .set push; .set mips32; ssnop; ssnop; ssnop; ssnop; .set pop;
45 #define COP0_SYNC .set push; .set mips32; ssnop; ssnop; ssnop; .set pop;
52 * .set push; .set mips32; ssnop; bnel $0, $0, .+4; ssnop; .set pop;
60 .set pus
[all...]
/src/tests/lib/libc/gen/
H A Dt_cpuset.c47 cpuset_t *set; local in function:ATF_TC_BODY
49 set = cpuset_create();
50 ATF_REQUIRE(set != NULL);
52 ATF_CHECK(cpuset_set(-1, set) == -1);
53 ATF_CHECK(cpuset_clr(-1, set) == -1);
54 ATF_CHECK(cpuset_isset(-1, set) == -1);
56 ATF_CHECK(cpuset_set(INT_MAX, set) == -1);
57 ATF_CHECK(cpuset_clr(INT_MAX, set) == -1);
58 ATF_CHECK(cpuset_isset(INT_MAX, set) == -1);
60 cpuset_destroy(set);
71 cpuset_t *set; local in function:ATF_TC_BODY
92 cpuset_t *set; local in function:ATF_TC_BODY
[all...]
/src/sys/arch/sparc64/include/
H A Dcpuset.h38 #define CPUSET_ADD(set, cpu) ((set) |= CPUSET_SINGLE(cpu))
39 #define CPUSET_DEL(set, cpu) ((set) &= ~CPUSET_SINGLE(cpu))
42 #define CPUSET_EXCEPT(set, cpu) ((set) & ~CPUSET_SINGLE(cpu))
44 #define CPUSET_HAS(set, cpu) ((set) & CPUSET_SINGLE(cpu))
45 #define CPUSET_NEXT(set) (ffs(set)
[all...]
/src/sys/arch/amd64/amd64/
H A Dlinux_sigcode.S43 .set _C_LABEL(linux_sigcode),0
44 .set _C_LABEL(linux_esigcode),0
/src/lib/libc/gen/
H A Dsighold.c44 sigset_t set; local in function:sighold
46 sigemptyset(&set);
47 if (sigaddset(&set, sig) != 0)
50 return (sigprocmask(SIG_BLOCK, &set, NULL));
H A Dsigrelse.c44 sigset_t set; local in function:sigrelse
46 sigemptyset(&set);
47 if (sigaddset(&set, sig) != 0)
50 return (sigprocmask(SIG_UNBLOCK, &set, NULL));
H A Dsetmode.c90 * bits) followed by a '+' (set bits).
95 const BITCMD *set; local in function:getmode
100 set = (const BITCMD *)bbox;
102 for (value = 0;; set++)
103 switch(set->cmd) {
120 common: if (set->cmd2 & CMD2_CLR) {
122 (set->cmd2 & CMD2_SET) ? S_IRWXO : value;
123 if (set->cmd2 & CMD2_UBITS)
124 newmode &= ~((clrval<<6) & set->bits);
125 if (set
184 BITCMD *set, *saveset, *endset; local in function:setmode
369 addcmd(BITCMD * set,mode_t op,mode_t who,mode_t oparg,mode_t mask) argument
416 dumpmode(BITCMD * set) argument
439 compress_mode(BITCMD * set) argument
[all...]
/src/lib/libc/string/
H A Dwcspbrk.c43 wcspbrk(const wchar_t *s, const wchar_t *set) argument
50 _DIAGASSERT(set != NULL);
52 if (set[0] == '\0')
54 if (set[1] == '\0')
55 return wcschr(s, set[0]);
57 wcsspn_bloom_init(bloom, set);
63 q = set;
H A Dwcscspn.c43 wcscspn(const wchar_t *s, const wchar_t *set) argument
50 _DIAGASSERT(set != NULL);
52 if (set[0] == '\0')
54 if (set[1] == '\0') {
56 if (*p == set[0])
61 wcsspn_bloom_init(bloom, set);
67 q = set;
H A Dwcsspn.c38 wcsspn(const wchar_t *s, const wchar_t *set) argument
44 _DIAGASSERT(set != NULL);
47 for (q = set; *q; ++q) {
/src/sys/external/bsd/drm/dist/shared-core/
H A Dsis_ds.c42 set_t *set; local in function:setInit
44 set = (set_t *) drm_alloc(sizeof(set_t), DRM_MEM_DRIVER);
45 if (set != NULL) {
47 set->list[i].free_next = i + 1;
48 set->list[i].alloc_next = -1;
50 set->list[SET_SIZE - 1].free_next = -1;
51 set->free = 0;
52 set->alloc = -1;
53 set->trace = -1;
55 return set;
58 setAdd(set_t * set,ITEM_TYPE item) argument
76 setDel(set_t * set,ITEM_TYPE item) argument
106 setFirst(set_t * set,ITEM_TYPE * item) argument
117 setNext(set_t * set,ITEM_TYPE * item) argument
128 setDestroy(set_t * set) argument
[all...]
/src/lib/libc/compat/gen/
H A Dcompat_sigsetops.c69 sigemptyset(sigset13_t *set)
71 *set = 0;
76 sigfillset(sigset13_t *set) argument
78 *set = ~(sigset13_t)0;
83 sigaddset(sigset13_t *set, int signo) argument
89 *set |= __sigmask13(signo);
94 sigdelset(sigset13_t *set, int signo) argument
100 *set &= ~__sigmask13(signo);
105 sigismember(const sigset13_t *set, int signo) argument
111 return ((*set
[all...]
/src/sys/sys/
H A Dcdefs_elf.h182 #define __link_set_make_entry(set, sym) \
183 static void const * const __link_set_##set##_sym_##sym \
184 __section("link_set_" #set) __used = (const void *)&sym
185 #define __link_set_make_entry2(set, sym, n) \
186 static void const * const __link_set_##set##_sym_##sym##_##n \
187 __section("link_set_" #set) __used = (const void *)&sym[n]
189 #define __link_set_make_entry(set, sym) \
190 extern void const * const __link_set_##set##_sym_##sym
191 #define __link_set_make_entry2(set, sym, n) \
192 extern void const * const __link_set_##set##_sym
[all...]
H A Dcdefs_aout.h106 #define __link_set_make_entry(set, sym, type) \
108 __link_set_##set##_sym_##sym __used = &sym; \
109 __asm(".stabs \"___link_set_" #set "\", " #type ", 0, 0, _" #sym)
111 #define __link_set_make_entry(set, sym, type) \
112 extern void const * const __link_set_##set##_sym_##sym
115 #define __link_set_add_text(set, sym) __link_set_make_entry(set, sym, 23)
116 #define __link_set_add_rodata(set, sym) __link_set_make_entry(set, sym, 23)
117 #define __link_set_add_data(set, sy
[all...]
/src/lib/libc/sys/
H A Dsigtimedwait.c48 sigtimedwait(const sigset_t * __restrict set, siginfo_t * __restrict info, argument
55 return __sigtimedwait(set, info, &ts);
57 return __sigtimedwait(set, info, NULL);
/src/tests/lib/libc/arch/mips/
H A Dreturn_one.S5 .set noreorder
/src/tests/usr.bin/mtree/
H A Dt_sets.sh30 local set=$1
34 mtree -e </etc/mtree/set."$set"
39 local set=$1
41 eval "set_${set}_head() { atf_set descr \"/etc/mtree/set.${set}\"; }"
42 eval "set_${set}_body() { check_mtree ${set}; }"
43 eval "set_${set}_define
[all...]
/src/sys/external/bsd/drm2/dist/drm/
H A Ddrm_crtc_helper.c262 * drm_crtc_helper_set_mode - internal helper to set a mode
269 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance
270 * to fixup or reject the mode prior to trying to set it. This is an internal
279 * True if the mode was set successfully, false otherwise.
391 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%s]\n",
397 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
489 * drm_crtc_helper_set_config - set a new config from userspace
490 * @set: mode set configuration
513 * performs a full mode set sequenc
526 drm_crtc_helper_set_config(struct drm_mode_set * set,struct drm_modeset_acquire_ctx * ctx) argument
1018 struct drm_mode_set set = { local in function:drm_helper_force_disable_all
[all...]
/src/common/lib/libc/string/
H A Dstrpbrk.c44 #define ADD_NEW_TO_SET(i) (set[inv[i] = idx++] = (i))
45 #define IS_IN_SET(i) (inv[i] < idx && set[inv[i]] == (i))
48 #define IS_IN_SET(i) (set[(i) >> 3] & idx[(i) & 7])
49 #define ADD_TO_SET(i) (void)(set[(i) >> 3] |= idx[(i) & 7])
56 uint8_t set[256], inv[256], idx = 0; local in function:strpbrk
59 uint8_t set[32];
61 (void)memset(set, 0, sizeof(set));
H A Dstrcspn.c48 uint8_t set[32]; local in function:strcspn
60 (void)memset(set, 0, sizeof(set));
63 set[UC(*charset) >> 3] |= idx[UC(*charset) & 7];
66 if (set[UC(*t) >> 3] & idx[UC(*t) & 7])
/src/lib/libc/compat/sys/
H A Dcompat_sigtimedwait.c58 sigtimedwait(const sigset_t * __restrict set, siginfo_t * __restrict info,
65 return ____sigtimedwait50(set, info, &ts);
67 return ____sigtimedwait50(set, info, NULL);
71 __sigtimedwait(const sigset_t * __restrict set, siginfo_t * __restrict info, argument
74 return sigtimedwait(set, info, timeout);
/src/libexec/getty/
H A Dgettytab.h47 int set; /* we actually got this one */ member in struct:gettynums
55 char set; /* we found it */ member in struct:gettyflags
108 #define F0set gettynums[9].set
110 #define F1set gettynums[10].set
112 #define F2set gettynums[11].set
115 #define C0set gettynums[13].set
117 #define C1set gettynums[14].set
119 #define C2set gettynums[15].set
121 #define I0set gettynums[16].set
123 #define I1set gettynums[17].set
[all...]

Completed in 10 milliseconds

1234567891011>>