Home
last modified time | relevance | path

Searched defs:w (Results 1 – 25 of 569) sorted by relevance

12345678910>>...23

/dflybsd-src/usr.sbin/installer/dfuife_curses/
H A Dcurses_widget.c69 struct curses_widget *w; in curses_widget_new() local
128 curses_widget_free(struct curses_widget *w) in curses_widget_free()
137 curses_widget_tooltip_set(struct curses_widget *w, const char *tooltip) in curses_widget_tooltip_set()
149 curses_widget_draw(struct curses_widget *w) in curses_widget_draw()
255 curses_widget_draw_tooltip(struct curses_widget *w) in curses_widget_draw_tooltip()
266 curses_widget_can_take_focus(struct curses_widget *w) in curses_widget_can_take_focus()
274 curses_widget_set_click_cb(struct curses_widget *w, in curses_widget_set_click_cb()
288 curses_widget_click(struct curses_widget *w) in curses_widget_click()
300 curses_textbox_advance_char(struct curses_widget *w) in curses_textbox_advance_char()
315 curses_textbox_retreat_char(struct curses_widget *w) in curses_textbox_retreat_char()
[all …]
H A Dcurses_form.c107 struct curses_widget *w, *t; in curses_form_free() local
139 curses_form_widget_prepare(struct curses_form *cf, struct curses_widget *w) in curses_form_widget_prepare()
177 struct curses_widget *w; in curses_form_widget_add() local
204 struct curses_widget *w; in curses_form_widget_insert_after() local
224 curses_form_widget_remove(struct curses_widget *w) in curses_form_widget_remove()
316 struct curses_widget *w; in curses_form_draw() local
437 struct curses_widget *w; in curses_form_advance() local
458 struct curses_widget *w; in curses_form_retreat() local
483 struct curses_widget *w; in curses_form_widget_at() local
500 struct curses_widget *w; in curses_form_widget_first_row() local
[all …]
/dflybsd-src/usr.bin/window/
H A Dwin.c63 struct ww *w; in openwin() local
118 struct ww *w, *s = NULL; in findselwin() local
133 closewin(struct ww *w) in closewin()
169 struct ww *w; in openiwin() local
186 closeiwin(struct ww *w) in closeiwin()
193 closewin1(struct ww *w) in closewin1()
215 front(struct ww *w, char doreframe) in front()
231 addwin(struct ww *w, char fg) in addwin()
246 deletewin(struct ww *w) in deletewin()
256 struct ww *w; in reframe() local
[all …]
H A Dlcmd2.c53 struct ww *w; in l_iostat() local
105 struct ww *w; in l_time() local
175 struct ww *w, *wp; in l_list() local
207 struct ww *w; in l_variable() local
221 struct ww *w = vw; in printvar() local
290 struct ww *w; in l_alias() local
340 struct ww *w = vw; in printalias() local
370 struct ww *w; in l_echo() local
H A Dcmd.c46 struct ww *w; in docmd() local
220 struct ww *w = NULL; in getwin() local
247 checkproc(struct ww *w) in checkproc()
294 setselwin(struct ww *w) in setselwin()
H A Dlcmd1.c64 struct ww *w; in l_window() local
152 struct ww *w; in l_smooth() local
186 struct ww *w; in l_select() local
240 struct ww *w; in l_label() local
258 struct ww *w; in l_foreground() local
312 struct ww *w; in l_write() local
335 struct ww *w; in l_close() local
386 vtowin(struct value *v, struct ww *w) in vtowin()
H A Dcmd7.c50 c_size(struct ww *w) in c_size()
102 struct ww *w = selwin; in c_yank() local
178 struct ww *w = selwin; in yank_highlight() local
202 struct ww *w = selwin; in yank_highlight_line() local
H A Dwwframe.c39 #define frameok(w, r, c) (w1 = wwindex[wwsmap[r][c]], \ argument
43 wwframe(struct ww *w, struct ww *wframe) in wwframe()
200 struct ww *w; in wwframec() local
/dflybsd-src/contrib/gdb-7/gdb/common/
H A Dgdb_wait.h44 #define WIFEXITED(w) (((w)&0377) == 0) argument
48 #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0) argument
59 #define WIFSTOPPED(w) ((w)&0x40) argument
62 #define WIFSTOPPED(w) (((w)&0377) == 0177) argument
67 #define WEXITSTATUS(w) (((w) >> 8) & 0377) /* same as WRETCODE */ argument
71 #define WTERMSIG(w) ((w) & 0177) argument
82 #define WSETEXIT(w,status) ((w) = W_EXITCODE(status,0)) argument
84 #define WSETEXIT(w,status) ((w) = (0 | ((status) << 8))) argument
90 #define WSETSTOP(w,sig) ((w) = W_STOPCODE(sig)) argument
92 #define WSETSTOP(w,sig) ((w) = (0177 | ((sig) << 8))) argument
/dflybsd-src/sys/bus/u4b/
H A Dusb_endian.h46 #define UGETB(w) \ argument
49 #define UGETW(w) \ argument
53 #define UGETDW(w) \ argument
59 #define UGETQW(w) \ argument
69 #define USETB(w,v) do { \ argument
73 #define USETW(w,v) do { \ argument
78 #define USETDW(w,v) do { \ argument
85 #define USETQW(w,v) do { \ argument
96 #define USETW2(w,b1,b0) do { \ argument
101 #define USETW4(w,b3,b2,b1,b0) do { \ argument
[all …]
/dflybsd-src/contrib/cvs-1.12/lib/
H A Dwait.h22 #define WIFSTOPPED(w) (((w) & 0xff) == 0x7f) argument
25 #define WIFSIGNALED(w) (((w) & 0xff) != 0x7f && ((w) & 0xff) != 0) argument
28 #define WIFEXITED(w) (((w) & 0xff) == 0) argument
31 #define WCOREDUMP(w) (((w) & 0x80) != 0) argument
35 #define WSTOPSIG(w) (((w) >> 8) & 0xff) argument
38 #define WTERMSIG(w) ((w) & 0x7f) argument
41 #define WEXITSTATUS(w) (((w) >> 8) & 0xff) argument
/dflybsd-src/contrib/libarchive/libarchive/
H A Darchive_blake2_impl.h37 uint32_t w; in load32() local
52 uint64_t w; in load64() local
71 uint16_t w; in load16() local
81 static BLAKE2_INLINE void store16( void *dst, uint16_t w ) in store16()
92 static BLAKE2_INLINE void store32( void *dst, uint32_t w ) in store32()
105 static BLAKE2_INLINE void store64( void *dst, uint64_t w ) in store64()
133 static BLAKE2_INLINE void store48( void *dst, uint64_t w ) in store48()
144 static BLAKE2_INLINE uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32()
149 static BLAKE2_INLINE uint64_t rotr64( const uint64_t w, const unsigned c ) in rotr64()
/dflybsd-src/sys/dev/raid/asr/
H A Ddptalign.h299 #define getL24bit1(w,x,y) ((unsigned DPT_4_BYTES)((unsigned char __FAR__ *)(&w->x))[0+(y)] \ argument
303 #define setL24bit1(w,x,y,z) { ((unsigned char __FAR__ *)(&w->x))[0+(y)] = (z); \ argument
308 #define getL16bit(w,x,y) ((unsigned short)((unsigned char __FAR__ *)(&w->x))[0+(y)] \ argument
311 #define setL16bit(w,x,y,z) { ((unsigned char __FAR__ *)(&w->x))[0+(y)] = (z); \ argument
315 #define getL16bit2(w,x,y) ((unsigned short)((unsigned char __FAR__ *)(&w->x))[2+(y)] \ argument
318 #define setL16bit2(w,x,y,z) { ((unsigned char __FAR__ *)(&w->x))[2+(y)] = (z); \ argument
323 #define getL4bit(w,x,y) \ argument
326 #define setL4bit(w,x,y,z) { \ argument
331 #define getL1bit(w,x,y) \ argument
334 #define setL1bit(w,x,y,z) { \ argument
[all …]
H A Di2odep.h176 # define _F_getTID(w,x,y) (*((U16 __FAR__ *)(&((w)->x))) & I2O_TID_MASK) argument
177 # define _F_setTID(w,x,y,z) (*((U16 __FAR__ *)(&((w)->x)))\ argument
182 # define _F_getTID1(w,x,y) ((*(U16 __FAR__ *)(((U8 __FAR__ *)(&((w)->x)))\ argument
185 # define _F_setTID1(w,x,y,z) ((*((U16 __FAR__ *)(((U8 __FAR__ *)(&((w)->x)))\ argument
191 # define _F_getFunc(w,x,y) (*(((U8 __FAR__ *)(&((w)->x)))\ argument
193 # define _F_setFunc(w,x,y,z) (_F_getFunc(w,x,y) = (z)) argument
196 # define _F_getCount(w,x,y) (*((U32 __FAR__ *)(&((w)->x)))&I2O_SG_COUNT_MASK) argument
205 # define _F_setCount(w,x,y,z) (*((U32 __FAR__ *)(&((w)->x)))\ argument
210 # define _F_getFlags(w,x,y) (*(((U8 __FAR__ *)(&((w)->x)))\ argument
212 # define _F_setFlags(w,x,y,z) (_F_getFlags(w,x,y) = (z)) argument
[all …]
/dflybsd-src/crypto/libressl/crypto/bn/
H A Dbn_word.c64 BN_mod_word(const BIGNUM *a, BN_ULONG w) in BN_mod_word()
106 BN_div_word(BIGNUM *a, BN_ULONG w) in BN_div_word()
142 BN_add_word(BIGNUM *a, BN_ULONG w) in BN_add_word()
179 BN_sub_word(BIGNUM *a, BN_ULONG w) in BN_sub_word()
227 BN_mul_word(BIGNUM *a, BN_ULONG w) in BN_mul_word()
/dflybsd-src/contrib/gmp/mpz/
H A Dcfdiv_q_2exp.c28 #define cfdiv_q_2exp(w,u,cnt,dir) __gmpz_cfdiv_q_2exp (REGPARM_3_1 (w,u,cnt,dir)) argument
31 cfdiv_q_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt, int dir) in cfdiv_q_2exp()
45 PTR(w)[0] = 1; in cfdiv_q_2exp() local
93 mpz_cdiv_q_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt) in mpz_cdiv_q_2exp()
99 mpz_fdiv_q_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt) in mpz_fdiv_q_2exp()
H A Dcfdiv_r_2exp.c31 #define cfdiv_r_2exp(w,u,cnt,dir) __gmpz_cfdiv_r_2exp (REGPARM_3_1 (w, u, cnt, dir)) argument
34 cfdiv_r_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt, int dir) in cfdiv_r_2exp()
146 mpz_cdiv_r_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt) in mpz_cdiv_r_2exp()
152 mpz_fdiv_r_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt) in mpz_fdiv_r_2exp()
H A Daorsmul.c38 #define mpz_aorsmul(w,x,y,sub) __gmpz_aorsmul (REGPARM_3_1 (w, x, y, sub)) argument
41 mpz_aorsmul (mpz_ptr w, mpz_srcptr x, mpz_srcptr y, mp_size_t sub) in mpz_aorsmul()
145 mpz_addmul (mpz_ptr w, mpz_srcptr u, mpz_srcptr v) in mpz_addmul()
151 mpz_submul (mpz_ptr w, mpz_srcptr u, mpz_srcptr v) in mpz_submul()
/dflybsd-src/contrib/gcc-4.7/libgcc/
H A Dlibgcc2.c69 const DWunion w = { {.low = -uu.s.low, in __negdi2() local
80 const Wtype w = (UWtype) a + (UWtype) b; in __addvSI3() local
91 const SItype w = (USItype) a + (USItype) b; in __addvsi3() local
105 const DWtype w = (UDWtype) a + (UDWtype) b; in __addvDI3() local
118 const Wtype w = (UWtype) a - (UWtype) b; in __subvSI3() local
129 const SItype w = (USItype) a - (USItype) b; in __subvsi3() local
143 const DWtype w = (UDWtype) a - (UDWtype) b; in __subvDI3() local
156 const DWtype w = (DWtype) a * (DWtype) b; in __mulvSI3() local
169 const DItype w = (DItype) a * (DItype) b; in __mulvsi3() local
183 const Wtype w = -(UWtype) a; in __negvSI2() local
[all …]
/dflybsd-src/contrib/gcc-8.0/libgcc/
H A Dlibgcc2.c67 const DWunion w = { {.low = -uu.s.low, in __negdi2() local
78 const Wtype w = (UWtype) a + (UWtype) b; in __addvSI3() local
89 const SItype w = (USItype) a + (USItype) b; in __addvsi3() local
103 const DWtype w = (UDWtype) a + (UDWtype) b; in __addvDI3() local
116 const Wtype w = (UWtype) a - (UWtype) b; in __subvSI3() local
127 const SItype w = (USItype) a - (USItype) b; in __subvsi3() local
141 const DWtype w = (UDWtype) a - (UDWtype) b; in __subvDI3() local
154 const DWtype w = (DWtype) a * (DWtype) b; in __mulvSI3() local
167 const DItype w = (DItype) a * (DItype) b; in __mulvsi3() local
181 const Wtype w = -(UWtype) a; in __negvSI2() local
[all …]
/dflybsd-src/sys/dev/sound/pci/hda/
H A Dhdaa.c269 struct hdaa_widget *w; in hdaa_channels_handler() local
379 hdaa_hpredir_handler(struct hdaa_widget *w) in hdaa_hpredir_handler()
493 hdaa_autorecsrc_handler(struct hdaa_audio_as *as, struct hdaa_widget *w) in hdaa_autorecsrc_handler()
564 hdaa_presence_handler(struct hdaa_widget *w) in hdaa_presence_handler()
614 struct hdaa_widget *w; in hdaa_jack_poll_callback() local
637 hdaa_eld_dump(struct hdaa_widget *w) in hdaa_eld_dump()
717 hdaa_eld_handler(struct hdaa_widget *w) in hdaa_eld_handler()
781 struct hdaa_widget *w; in hdaa_sense_init() local
833 struct hdaa_widget *w; in hdaa_sense_deinit() local
975 hdaa_local_patch_pin(struct hdaa_widget *w) in hdaa_local_patch_pin()
[all …]
/dflybsd-src/usr.sbin/makefs/cd9660/
H A Dcd9660_conversion.c57 cd9660_721(uint16_t w, unsigned char *twochar) in cd9660_721()
66 cd9660_731(uint32_t w, unsigned char *fourchar) in cd9660_731()
76 cd9660_722(uint16_t w, unsigned char *twochar) in cd9660_722()
85 cd9660_732(uint32_t w, unsigned char *fourchar) in cd9660_732()
/dflybsd-src/contrib/dialog/
H A Ddlg_internals.h204 #define dlg_attrset(w,a) (void) wattrset((w), (a)) argument
205 #define dlg_attron(w,a) (void) wattron((w), (a)) argument
206 #define dlg_attroff(w,a) (void) wattroff((w), (a)) argument
208 #define dlg_attrset(w,a) (void) wattrset((w), (int)(a)) argument
209 #define dlg_attron(w,a) (void) wattron((w), (int)(a)) argument
210 #define dlg_attroff(w,a) (void) wattroff((w), (int)(a)) argument
/dflybsd-src/contrib/nvi2/common/
H A Dkey.h13 #define FILE2INT5(sp,buf,n,nlen,w,wlen) \ argument
15 #define INT2FILE(sp,w,wlen,n,nlen) \ argument
17 #define CHAR2INT5(sp,buf,n,nlen,w,wlen) \ argument
19 #define INT2CHAR(sp,w,wlen,n,nlen) \ argument
21 #define INPUT2INT5(sp,cw,n,nlen,w,wlen) \ argument
28 #define FILE2INT5(sp,buf,n,nlen,w,wlen) \ argument
30 #define INT2FILE(sp,w,wlen,n,nlen) \ argument
32 #define CHAR2INT5(sp,buf,n,nlen,w,wlen) \ argument
34 #define INT2CHAR(sp,w,wlen,n,nlen) \ argument
36 #define INPUT2INT5(sp,buf,n,nlen,w,wlen) \ argument
[all …]
/dflybsd-src/contrib/ldns/
H A Dsha1.c38 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
39 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
40 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument
41 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument
42 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument

12345678910>>...23