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

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/cfe/cfe/arch/mips/cpu/bcmcore/include/
H A Dcpu_config.h59 .set push ; \
60 .set mips4 ; \
64 .set pop
67 .set push ; \
68 .set mips4 ; \
70 .set pop
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/brcm-boards/generic/
H A Dint-handler.S36 .set noreorder
37 .set noat
42 .set at
43 .set noreorder
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/alpha/lib/
H A Dstrncpy.S14 .set noat
15 .set noreorder
26 mov $16, $0 # set return value now
28 mov $26, $23 # set return address
H A Dstrcpy.S18 mov $16, $0 # set up return value
19 mov $26, $23 # set up return address
H A Dstrcat.S17 mov $16, $0 # set up return value
26 cmpbge $31, $1, $2 # bits set iff byte == 0
34 $found: negq $2, $3 # clear all but least set bit
37 and $2, 0xf0, $3 # binary search for that set bit
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/fpsp040/
H A Dfpsp.h80 .set LOCAL_SIZE,192 | bytes needed for local variables
81 .set LV,-LOCAL_SIZE | convenient base value
83 .set USER_DA,LV+0 | save space for D0-D1,A0-A1
84 .set USER_D0,LV+0 | saved user D0
85 .set USER_D1,LV+4 | saved user D1
86 .set USER_A0,LV+8 | saved user A0
87 .set USER_A1,LV+12 | saved user A1
88 .set USER_FP0,LV+16 | saved user FP0
89 .set USER_FP1,LV+28 | saved user FP1
90 .set USER_FP
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dsignal.h31 static inline void sigaddset(sigset_t *set, int _sig) argument
35 set->sig[0] |= 1UL << sig;
37 set->sig[sig / _NSIG_BPW] |= 1UL << (sig % _NSIG_BPW);
40 static inline void sigdelset(sigset_t *set, int _sig) argument
44 set->sig[0] &= ~(1UL << sig);
46 set->sig[sig / _NSIG_BPW] &= ~(1UL << (sig % _NSIG_BPW));
49 static inline int sigismember(sigset_t *set, int _sig) argument
53 return 1 & (set->sig[0] >> sig);
55 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
122 static inline void name(sigset_t *set) \
145 sigemptyset(sigset_t *set) argument
157 sigfillset(sigset_t *set) argument
173 sigaddsetmask(sigset_t *set, unsigned long mask) argument
178 sigdelsetmask(sigset_t *set, unsigned long mask) argument
183 sigtestsetmask(sigset_t *set, unsigned long mask) argument
188 siginitset(sigset_t *set, unsigned long mask) argument
200 siginitsetinv(sigset_t *set, unsigned long mask) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dsignal.h31 static inline void sigaddset(sigset_t *set, int _sig) argument
35 set->sig[0] |= 1UL << sig;
37 set->sig[sig / _NSIG_BPW] |= 1UL << (sig % _NSIG_BPW);
40 static inline void sigdelset(sigset_t *set, int _sig) argument
44 set->sig[0] &= ~(1UL << sig);
46 set->sig[sig / _NSIG_BPW] &= ~(1UL << (sig % _NSIG_BPW));
49 static inline int sigismember(sigset_t *set, int _sig) argument
53 return 1 & (set->sig[0] >> sig);
55 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
122 static inline void name(sigset_t *set) \
145 sigemptyset(sigset_t *set) argument
157 sigfillset(sigset_t *set) argument
173 sigaddsetmask(sigset_t *set, unsigned long mask) argument
178 sigdelsetmask(sigset_t *set, unsigned long mask) argument
183 sigtestsetmask(sigset_t *set, unsigned long mask) argument
188 siginitset(sigset_t *set, unsigned long mask) argument
200 siginitsetinv(sigset_t *set, unsigned long mask) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/verif/
H A Dvapi.h97 .set push ; \
98 .set reorder ; \
103 .set pop
106 .set push ; \
107 .set reorder ; \
111 .set pop
114 .set push ; \
115 .set reorder ; \
119 .set pop
122 .set pus
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-m68k/
H A Dposix_types.h50 #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
53 #define __FD_CLR(d, set) ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
56 #define __FD_ISSET(d, set) ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
H A Dsignal.h179 extern __inline__ void sigaddset(sigset_t *set, int _sig) argument
181 __asm__("bfset %0{%1,#1}" : "=m" (*set) : "id" ((_sig - 1) ^ 31)
185 extern __inline__ void sigdelset(sigset_t *set, int _sig) argument
187 __asm__("bfclr %0{%1,#1}" : "=m"(*set) : "id"((_sig - 1) ^ 31)
191 extern __inline__ int __const_sigismember(sigset_t *set, int _sig) argument
194 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
197 extern __inline__ int __gen_sigismember(sigset_t *set, int _sig) argument
201 : "=d"(ret) : "m"(*set), "id"((_sig-1) ^ 31));
205 #define sigismember(set,sig) \
207 __const_sigismember(set,si
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-m68k/
H A Dposix_types.h50 #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
53 #define __FD_CLR(d, set) ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
56 #define __FD_ISSET(d, set) ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
H A Dsignal.h179 extern __inline__ void sigaddset(sigset_t *set, int _sig) argument
181 __asm__("bfset %0{%1,#1}" : "=m" (*set) : "id" ((_sig - 1) ^ 31)
185 extern __inline__ void sigdelset(sigset_t *set, int _sig) argument
187 __asm__("bfclr %0{%1,#1}" : "=m"(*set) : "id"((_sig - 1) ^ 31)
191 extern __inline__ int __const_sigismember(sigset_t *set, int _sig) argument
194 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
197 extern __inline__ int __gen_sigismember(sigset_t *set, int _sig) argument
201 : "=d"(ret) : "m"(*set), "id"((_sig-1) ^ 31));
205 #define sigismember(set,sig) \
207 __const_sigismember(set,si
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/drm/
H A Dsis_ds.c49 set_t *set; local
51 set = (set_t *)MALLOC(sizeof(set_t));
52 if (set) {
54 set->list[i].free_next = i+1;
55 set->list[i].alloc_next = -1;
57 set->list[SET_SIZE-1].free_next = -1;
58 set->free = 0;
59 set->alloc = -1;
60 set->trace = -1;
62 return set;
65 setAdd(set_t *set, ITEM_TYPE item) argument
84 setDel(set_t *set, ITEM_TYPE item) argument
113 setFirst(set_t *set, ITEM_TYPE *item) argument
124 setNext(set_t *set, ITEM_TYPE *item) argument
135 setDestroy(set_t *set) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/lib/
H A Dprivileges.c36 and ignore any user that have been possibly set into the group
97 TALLOC_CTX *mem_ctx = talloc_init("privilege set");
131 priv_set->set = NULL;
146 NTSTATUS add_privilege(PRIVILEGE_SET *priv_set, LUID_ATTR set) argument
152 if (NT_STATUS_IS_OK(check_priv_in_privilege(priv_set, set)))
157 new_set = (LUID_ATTR *)talloc_realloc(priv_set->mem_ctx, priv_set->set, (priv_set->count + 1) * (sizeof(LUID_ATTR)));
160 new_set[priv_set->count].luid.high = set.luid.high;
161 new_set[priv_set->count].luid.low = set.luid.low;
162 new_set[priv_set->count].attr = set.attr;
165 priv_set->set
179 LUID_ATTR set; local
217 check_priv_in_privilege(PRIVILEGE_SET *priv_set, LUID_ATTR set) argument
245 remove_privilege(PRIVILEGE_SET *priv_set, LUID_ATTR set) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/kernel/
H A Dhead.S54 .set noreorder
55 .set noat
56 .set mips0
77 .set at
108 .set noat
109 .set noreorder
127 .set mips32
129 .set mips0
131 .set at
150 .set noa
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/jmr3927/rbhma3100/
H A Dint-handler.S62 .set noreorder
63 .set noat
68 .set at
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/parisc/kernel/
H A Dsignal32.c21 put_old_sigset32(old_sigset_t32 *up, old_sigset_t *set) argument
23 old_sigset_t32 set32 = *set;
28 get_old_segset32(old_sigset_t32 *up, old_sigset_t *set) argument
34 *set = set32;
40 sys32_sigpending(old_sigset_t32 *set) argument
42 extern long sys_sigpending(old_sigset_t *set);
49 if (put_old_sigset32(set, &pending))
55 int sys32_sigprocmask(int how, old_sigset_t32 *set, argument
58 extern int sys_sigprocmask(int how, old_sigset_t *set,
63 if (set
85 put_sigset32(sigset_t32 *up, sigset_t *set, size_t sz) argument
96 get_sigset32(sigset_t32 *up, sigset_t *set, size_t sz) argument
110 sys32_rt_sigprocmask(int how, sigset_t32 *set, sigset_t32 *oset, unsigned int sigsetsize) argument
135 sigset_t set; local
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/arch/mips/cpu/sb1250/include/
H A Dcpu_config.h77 #define HAZARD .set push ; .set mips64 ; ssnop ; ssnop ; ssnop ; ssnop ; ssnop ; ssnop ; ssnop ; .set pop
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/dec/prom/
H A Dlocore.S16 .set noat
17 .set noreorder
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-i386/
H A Dsignal.h182 static __inline__ void sigaddset(sigset_t *set, int _sig) argument
184 __asm__("btsl %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc");
187 static __inline__ void sigdelset(sigset_t *set, int _sig) argument
189 __asm__("btrl %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc");
192 static __inline__ int __const_sigismember(sigset_t *set, int _sig) argument
195 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
198 static __inline__ int __gen_sigismember(sigset_t *set, int _sig) argument
202 : "=r"(ret) : "m"(*set), "Ir"(_sig-1) : "cc");
206 #define sigismember(set,sig) \
208 __const_sigismember((set),(si
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-i386/
H A Dsignal.h182 static __inline__ void sigaddset(sigset_t *set, int _sig) argument
184 __asm__("btsl %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc");
187 static __inline__ void sigdelset(sigset_t *set, int _sig) argument
189 __asm__("btrl %1,%0" : "=m"(*set) : "Ir"(_sig - 1) : "cc");
192 static __inline__ int __const_sigismember(sigset_t *set, int _sig) argument
195 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
198 static __inline__ int __gen_sigismember(sigset_t *set, int _sig) argument
202 : "=r"(ret) : "m"(*set), "Ir"(_sig-1) : "cc");
206 #define sigismember(set,sig) \
208 __const_sigismember((set),(si
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/galileo-boards/ev64120/compressed/
H A Dhead.S11 .set noreorder
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/galileo-boards/ev64120/
H A Dint-handler.S18 .set reorder
19 .set noat
23 .set at
48 .set reorder
58 .set reorder
68 .set reorder
78 .set reorder
87 .set reorder
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/lasat/image/
H A Dhead.S5 .set noreorder
6 .set mips3

Completed in 214 milliseconds

1234567891011>>