Home
last modified time | relevance | path

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

12345678910>>...23

/dragonfly/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()
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()
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()
330 curses_textbox_home(struct curses_widget *w) in curses_textbox_home()
340 curses_textbox_end(struct curses_widget *w) in curses_textbox_end()
397 curses_textbox_delete_char(struct curses_widget *w) in curses_textbox_delete_char()
428 curses_checkbox_toggle(struct curses_widget *w) in curses_checkbox_toggle()
[all …]
H A Dcurses_form.c177 struct curses_widget *w; in curses_form_widget_add() local
204 struct curses_widget *w; in curses_form_widget_insert_after() local
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
517 struct curses_widget *w; in curses_form_widget_last_row() local
535 struct curses_widget *w; in curses_form_widget_first_on_row() local
706 struct curses_widget *w; in curses_form_refocus_after_scroll() local
[all …]
/dragonfly/usr.bin/window/
H A Dwin.c63 struct ww *w; in openwin() 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()
246 deletewin(struct ww *w) in deletewin()
256 struct ww *w; in reframe() local
267 labelwin(struct ww *w) in labelwin()
293 stopwin(struct ww *w) in stopwin()
302 startwin(struct ww *w) in startwin()
[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
/dragonfly/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
/dragonfly/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 …]
/dragonfly/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
/dragonfly/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()
/dragonfly/sys/dev/raid/asr/
H A Ddptalign.h311 #define setL16bit(w,x,y,z) { ((unsigned char __FAR__ *)(&w->x))[0+(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
338 #define getL1bit1(w,x,y) \ argument
341 #define setL1bit1(w,x,y,z) { \ argument
352 #define setL12bit(w,x,y,z) { ((unsigned char __FAR__ *)(&w->x))[0+(y)] = (z); \ argument
370 #define setL12bit2(w,x,y,z) { ((unsigned char __FAR__ *)(&w->x))[2+(y)] = (z); \ argument
375 #define getL8bit(w,x,y) (\ argument
[all …]
H A Di2odep.h214 # define _F_get1bit(w,x,y,z) ((U8)((w)->z)) argument
220 # define _F_get8bit(w,x,y,z) ((U8)((w)->z)) argument
257 # define _F_setTID(w,x,y,z) ((w)->y = (z)) argument
259 # define _F_setTID1(w,x,y,z) ((w)->y = (z)) argument
260 # define _F_getFunc(w,x,y) ((U8)((w)->y)) argument
261 # define _F_setFunc(w,x,y,z) ((w)->y = (z)) argument
263 # define _F_setCount(w,x,y,z) ((w)->y = (z)) argument
264 # define _F_getFlags(w,x,y) ((U8)((w)->y)) argument
265 # define _F_setFlags(w,x,y,z) ((w)->y = (z)) argument
266 # define _F_get1bit(w,x,y,z) ((U8)((w)->z)) argument
[all …]
/dragonfly/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()
/dragonfly/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()
/dragonfly/contrib/gcc-4.7/libgcc/
H A Dlibgcc2.c183 const Wtype w = -(UWtype) a; in __negvSI2() local
194 const SItype w = -(USItype) a; in __negvsi2() local
221 Wtype w = a; in __absvSI2() local
239 SItype w = a; in __absvsi2() local
260 DWtype w = a; in __absvDI2() local
412 DWunion w; in __lshrdi3() local
440 DWunion w; in __ashldi3() local
468 DWunion w; in __ashrdi3() local
1124 DWtype w; in __divdi3() local
1148 DWtype w; in __moddi3() local
[all …]
/dragonfly/contrib/gcc-8.0/libgcc/
H A Dlibgcc2.c181 const Wtype w = -(UWtype) a; in __negvSI2() local
219 Wtype w = a; in __absvSI2() local
237 SItype w = a; in __absvsi2() local
258 DWtype w = a; in __absvDI2() local
411 DWunion w; in __lshrdi3() local
439 DWunion w; in __ashldi3() local
467 DWunion w; in __ashrdi3() local
1236 DWtype w; in __divdi3() local
1260 DWtype w; in __moddi3() local
1283 DWtype w; in __divmoddi4() local
[all …]
/dragonfly/sys/dev/sound/pci/hda/
H A Dhdaa.c269 struct hdaa_widget *w; in hdaa_channels_handler() local
614 struct hdaa_widget *w; in hdaa_jack_poll_callback() local
781 struct hdaa_widget *w; in hdaa_sense_init() local
833 struct hdaa_widget *w; in hdaa_sense_deinit() local
1358 struct hdaa_widget *w; in hdaa_local_patch() local
2136 struct hdaa_widget *w; in hdaa_channel_stop() local
2614 struct hdaa_widget *w; in hdaa_audio_ctl_ossmixer_set() local
2790 struct hdaa_widget *w; in hdaa_audio_ctl_ossmixer_setrecsrc() local
2956 struct hdaa_widget *w; in hdaa_audio_parse() local
3018 struct hdaa_widget *w; in hdaa_audio_postprocess() local
[all …]
/dragonfly/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()
/dragonfly/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
/dragonfly/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
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
43 #define FILE2INT(sp,n,nlen,w,wlen) \ argument
[all …]
/dragonfly/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