HomeSort by: relevance | last modified time | path
    Searched refs:set (Results 1 - 25 of 998) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/games/sail/
machdep.h 39 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/
lset.bat 0 set path=%PATH%;$G
  /src/bin/sh/
syntax.c 16 #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('>', CSPCL
    [all...]
  /src/sys/arch/mips/include/
sb1regs.h 43 .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 push; .set mips32; ssnop; .word 0x54000000; ssnop; .set pop
    [all...]
  /src/tests/lib/libc/gen/
t_cpuset.c 47 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/
cpuset.h 38 #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) - 1
    [all...]
  /src/sys/arch/amd64/amd64/
linux_sigcode.S 43 .set _C_LABEL(linux_sigcode),0
44 .set _C_LABEL(linux_esigcode),0
  /src/lib/libc/gen/
sighold.c 44 sigset_t set; local in function:sighold
46 sigemptyset(&set);
47 if (sigaddset(&set, sig) != 0)
50 return (sigprocmask(SIG_BLOCK, &set, NULL));
sigrelse.c 44 sigset_t set; local in function:sigrelse
46 sigemptyset(&set);
47 if (sigaddset(&set, sig) != 0)
50 return (sigprocmask(SIG_UNBLOCK, &set, NULL));
setmode.c 90 * 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->cmd2 & CMD2_GBITS
184 BITCMD *set, *saveset, *endset; local in function:setmode
    [all...]
  /src/lib/libc/string/
wcspbrk.c 43 wcspbrk(const wchar_t *s, const wchar_t *set)
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;
wcscspn.c 43 wcscspn(const wchar_t *s, const wchar_t *set)
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;
wcsspn.c 38 wcsspn(const wchar_t *s, const wchar_t *set)
44 _DIAGASSERT(set != NULL);
47 for (q = set; *q; ++q) {
  /src/sys/external/bsd/drm/dist/shared-core/
sis_ds.c 35 /* Set Data Structure, not check repeated value
42 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
    [all...]
  /src/lib/libc/compat/gen/
compat_sigsetops.c 69 sigemptyset(sigset13_t *set)
71 *set = 0;
76 sigfillset(sigset13_t *set)
78 *set = ~(sigset13_t)0;
83 sigaddset(sigset13_t *set, int signo)
89 *set |= __sigmask13(signo);
94 sigdelset(sigset13_t *set, int signo)
100 *set &= ~__sigmask13(signo);
105 sigismember(const sigset13_t *set, int signo)
111 return ((*set & __sigmask13(signo)) != 0)
    [all...]
  /src/sys/sys/
cdefs_elf.h 182 #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_##sym##_##
    [all...]
cdefs_aout.h 106 #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, sym) __link_set_make_entry(set, sym, 25
    [all...]
  /src/lib/libc/sys/
sigtimedwait.c 48 sigtimedwait(const sigset_t * __restrict set, siginfo_t * __restrict info,
55 return __sigtimedwait(set, info, &ts);
57 return __sigtimedwait(set, info, NULL);
  /src/tests/lib/libc/arch/mips/
return_one.S 5 .set noreorder
  /src/tests/usr.bin/mtree/
t_sets.sh 30 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}_defined=
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_crtc_helper.c 262 * 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.
375 /* Set up the DPLL and any encoders state that needs to adjust or depend
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 configuratio
1018 struct drm_mode_set set = { local in function:drm_helper_force_disable_all
    [all...]
  /src/common/lib/libc/string/
strpbrk.c 44 #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));
strcspn.c 48 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/libexec/getty/
gettytab.h 47 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...]
  /src/lib/libc/compat/sys/
compat_sigtimedwait.c 58 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,
74 return sigtimedwait(set, info, timeout);

Completed in 28 milliseconds

1 2 3 4 5 6 7 8 91011>>