Home
last modified time | relevance | path

Searched refs:w (Results 1 – 25 of 1477) sorted by path

12345678910>>...60

/illumos-gate/usr/src/boot/common/
H A Dgfx_fb.c1823 unsigned w, h; in edid_diagonal_squared() local
1828 w = edid_info->display.max_horizontal_image_size; in edid_diagonal_squared()
1832 if (w == 0 || h == 0) in edid_diagonal_squared()
1838 if ((w == 16 && h == 9) || (w == 16 && h == 10) || in edid_diagonal_squared()
1839 (w == 4 && h == 3) || (w == 5 && h == 4)) in edid_diagonal_squared()
1845 w = w * 100 / 254; in edid_diagonal_squared()
1849 return (w * w + h * h); in edid_diagonal_squared()
H A Dreloc_elf.c56 Elf_Size w; in __elfN() local
66 w = relbase + a->r_addend; in __elfN()
67 bcopy(&w, (u_char *)data + (relbase + in __elfN()
68 a->r_offset - dataaddr), sizeof(w)); in __elfN()
196 Elf_Size w; in __elfN()
206 w = relbase + rela->r_addend; in __elfN()
207 bcopy(&w, (u_char *)data + (relbase + in __elfN()
208 rela->r_offset - dataaddr), sizeof(w)); in __elfN()
/illumos-gate/usr/src/boot/forth/
H A Dframes.4th123 : box ( w h x y -- ) \ Draw a box
125 rot ( w x y h )
126 over + >R ( w x y -- R: y+h )
127 swap rot ( y x w -- R: y+h )
128 over + >R ( y x -- R: y+h x+w )
H A Dmenu.4th888 42 13 menuX @ 3 - menuY @ 1- box \ Draw frame (w,h,x,y)
H A Dmenusets.4th460 \ $affix should be used appropriately w/respect to menuset_use_name
/illumos-gate/usr/src/boot/libsa/
H A Duuid_to_string.c77 char *w; in uuid_to_string() local
83 w = *s = malloc(37); in uuid_to_string()
95 *w++ = '-'; in uuid_to_string()
97 *w++ = '-'; in uuid_to_string()
99 *w++ = '-'; in uuid_to_string()
103 *w++ = '-'; in uuid_to_string()
104 tohex(&w, 2, u->node[0]); in uuid_to_string()
105 tohex(&w, 2, u->node[1]); in uuid_to_string()
106 tohex(&w, 2, u->node[2]); in uuid_to_string()
107 tohex(&w, 2, u->node[3]); in uuid_to_string()
[all …]
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dblkptr.c51 uint64_t w = 0; in decode_embedded_bp_compressed() local
63 if (i % sizeof (w) == 0) { in decode_embedded_bp_compressed()
66 w = *bp64; in decode_embedded_bp_compressed()
71 buf8[i] = BF64_GET(w, (i % sizeof (w)) * NBBY, NBBY); in decode_embedded_bp_compressed()
/illumos-gate/usr/src/cmd/
H A DMakefile455 w \
737 w \
777 w \
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A Dsymprof.pl1358 my ($w, $keep_space) = @_;
1362 $w =~ s/[\s:;`']*$//; # get rid of : ; ' and `
1363 $w =~ s/^[\s:;`']*//;
1365 $w =~ s/[:;`']*$//; # get rid of : ; ' and `
1366 $w =~ s/^[:;`']*//;
1369 return $w;
H A Dsymreport.pl194 my ($prob, $incomp, $c, $w);
359 foreach $w (split(/\|/, $m)) {
360 next if ($w =~ /^\s*$/);
362 $c = $w;
369 $warnings_found{$w} .= "$object|";
532 my ($w, $c, $output, $count);
540 foreach $w (keys(%warnings_found)) {
541 $warnings_found{$w} =~ s/\|+$//;
542 $count = scalar(@a = split(/\|/, $warnings_found{$w}));
543 $c = $w;
/illumos-gate/usr/src/cmd/acct/
H A Dwtmpfix.c211 winp(FILE *f, struct futmpx *w) in winp() argument
213 if (fread(w, (size_t)UTRSZ, (size_t)1, f) != 1) in winp()
215 if ((w->ut_type >= EMPTY) && (w->ut_type <= UTMAXTYPE)) in winp()
227 w->ut_line, w->ut_user, (long)w->ut_xtime); in winp()
271 adjust(off_t p, struct futmpx *w) in adjust() argument
283 w->ut_xtime += dp->d_adj; in adjust()
/illumos-gate/usr/src/cmd/ast/libast/amd64/FEATURE/
H A Dwctype74 #define iswalpha(w) (ast.mb_alpha?(*ast.mb_alpha)(w):isalpha(w))
/illumos-gate/usr/src/cmd/ast/libast/i386/FEATURE/
H A Dwctype74 #define iswalpha(w) (ast.mb_alpha?(*ast.mb_alpha)(w):isalpha(w))
/illumos-gate/usr/src/cmd/ast/libast/sparc/FEATURE/
H A Dwctype74 #define iswalpha(w) (ast.mb_alpha?(*ast.mb_alpha)(w):isalpha(w))
/illumos-gate/usr/src/cmd/ast/libast/sparcv9/FEATURE/
H A Dwctype74 #define iswalpha(w) (ast.mb_alpha?(*ast.mb_alpha)(w):isalpha(w))
/illumos-gate/usr/src/cmd/audio/include/
H A DAudio.h77 Whence w = Absolute); // Absolute || Relative
114 Whence w = Absolute); // Absolute || Relative
119 Whence w = Absolute); // Absolute || Relative
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudio.cc156 Whence w) // Absolute || Relative || Relative_eof in setpos() argument
158 if (w == Relative) // offset from current position in setpos()
160 else if (w == Relative_eof) { // offset from end-of-file in setpos()
178 Whence w) // Absolute | Relative in SetReadPosition() argument
180 return (setpos(readpos, pos, w)); in SetReadPosition()
187 Whence w) // Absolute | Relative in SetWritePosition() argument
189 return (setpos(writepos, pos, w)); in SetWritePosition()
/illumos-gate/usr/src/cmd/auditd/
H A Ddoorway.c82 #define DUMP(w, x, y, z) dump_state(w, x, y, z) argument
85 #define DUMP(w, x, y, z) argument
/illumos-gate/usr/src/cmd/awk/
H A Dlex.c486 binsearch(char *w, Keyword *kp, int n) in binsearch() argument
494 if ((cond = strcmp(w, kp[mid].word)) < 0) in binsearch()
505 word(char *w) in word() argument
510 n = binsearch(w, keywords, sizeof (keywords) / sizeof (keywords[0])); in word()
535 if (c != '(' && infunc && (n = isarg(w)) >= 0) { in word()
539 yylval.cp = setsymtab(w, "", 0.0, STR|NUM|DONTFREE, symtab); in word()
/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk.h366 extern char w[];
H A Dawk0.c115 char w[] = "w"; /* Write file mode */ variable
H A Dawk1.c1300 wchar_t *w; in mbstowcsdup() local
1303 if ((w = (wchar_t *)malloc(n * sizeof (wchar_t))) == NULL) in mbstowcsdup()
1306 if (mbstowcs(w, s, n) == (size_t)-1) in mbstowcsdup()
1308 return (w); in mbstowcsdup()
1313 wcstombsdup(wchar_t *w) in wcstombsdup() argument
1319 n = wslen(w) + 1; in wcstombsdup()
1326 if ((n = wcstombs(mb, w, n)) == -1) { in wcstombsdup()
H A Dawk2.c623 if ((fp = fopen(cp, w)) != FNULL) { in openfile()
634 fp = popen(cp, w); in openfile()
/illumos-gate/usr/src/cmd/backup/dump/
H A Ddump.h92 #define BIS(i, w) (MWORD(w, i) |= MBIT(i)) argument
93 #define BIC(i, w) (MWORD(w, i) &= ~MBIT(i)) argument
94 #define BIT(i, w) (MWORD(w, i) & MBIT(i)) argument
/illumos-gate/usr/src/cmd/backup/restore/
H A Dinteractive.c713 uint_t len, w, width = 0, columns, lines; in formatf() local
784 w = strlen(cp); in formatf()
785 while (w < width) { in formatf()
786 w++; in formatf()

12345678910>>...60