/illumos-gate/usr/src/test/libc-tests/tests/i18n/ |
H A D | bindtextdomain_test.c | 55 const char *want; in main() member 61 .want = "/usr/lib/locale/", in main() 67 .want = NULL, in main() 73 .want = "/usr/lib/locale/", in main() 78 .want = "/bounddir2", in main() 83 .want = "/bounddir2", in main() 88 .want = "/bounddir2", in main() 93 .want = "/bounddir2", in main() 98 .want = "/bounddir3", in main() 103 .want = "/bounddir3", in main() [all …]
|
/illumos-gate/usr/src/lib/libc/port/locale/ |
H A D | utf8.c | 67 return (ps == NULL || ((const _UTF8State *)ps)->want == 0); in _UTF8_mbsinit() 75 int ch, i, mask, want; in _UTF8_mbrtowc() local 80 if (us->want < 0 || us->want > 6) { in _UTF8_mbrtowc() 95 if (us->want == 0) { in _UTF8_mbrtowc() 121 want = 2; in _UTF8_mbrtowc() 125 want = 3; in _UTF8_mbrtowc() 129 want = 4; in _UTF8_mbrtowc() 136 want = 5; in _UTF8_mbrtowc() 140 want = 6; in _UTF8_mbrtowc() 151 want = us->want; in _UTF8_mbrtowc() [all …]
|
H A D | euc.c | 108 return (ps == NULL || ((const _EucState *)ps)->want == 0); in _EUC_mbsinit() 302 int i, want; in _EUC_mbrtowc_impl() local 308 if (es->want < 0 || es->want > MB_CUR_MAX) { in _EUC_mbrtowc_impl() 323 if (es->want == 0) { in _EUC_mbrtowc_impl() 337 want = 2; in _EUC_mbrtowc_impl() 339 want = cs2width; in _EUC_mbrtowc_impl() 341 want = cs3width; in _EUC_mbrtowc_impl() 348 es->want = want; in _EUC_mbrtowc_impl() 351 want = es->want; in _EUC_mbrtowc_impl() 355 for (i = 0; i < MIN(want, n); i++) { in _EUC_mbrtowc_impl() [all …]
|
H A D | collate.c | 384 size_t want = 0; in _collate_wxfrm() local 400 want++; in _collate_wxfrm() 447 want++; in _collate_wxfrm() 448 need = want; in _collate_wxfrm() 467 want++; in _collate_wxfrm() 468 need = want; in _collate_wxfrm() 532 size_t want = 0; in _collate_sxfrm() local 551 want++; in _collate_sxfrm() 597 want += b; in _collate_sxfrm() 607 need = want; in _collate_sxfrm() [all …]
|
H A D | mblocal.h | 53 int want; member 76 int want; member
|
/illumos-gate/usr/src/cmd/mandoc/ |
H A D | tbl_opts.c | 68 int len, want; in arg() local 86 want = 2; in arg() 89 want = 1; in arg() 90 if (len == want) in arg() 94 want = 0; in arg() 97 want = 1; in arg() 98 if (len == want) in arg() 108 else if (want && len != want) in arg() 110 "%s want %d have %d", keys[key].name, want, len); in arg()
|
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/ |
H A D | request.c | 60 saverequest(char *want) in saverequest() argument 79 request[nextreq].want = strtok(want, ": "); in saverequest() 86 } else error(NON_FATAL, "too many requests - ignoring %s", want); in saverequest() 111 dumprequest(request[i].want, request[i].file, fp_out); in writerequest() 120 dumprequest(char *want, char *file, FILE *fp_out) in dumprequest() argument 141 if ( buf[0] == '@' && strncmp(want, &buf[1], strlen(want)) == 0 ) in dumprequest()
|
H A D | request.h | 46 char *want; member
|
/illumos-gate/usr/src/test/os-tests/tests/ilstr/ |
H A D | ilstr_basic.c | 119 const char *want = "a\nb\n1000\ntest string\n"; in ist_printf_1() local 123 VERIFY(strcmp(ilstr_cstr(ils), want) == 0); in ist_printf_1() 138 char *want; in ist_printf_2() local 140 if (asprintf(&want, "%s\n\tnumber 1\n%s\n\n%s\n number 100000000\n", in ist_printf_2() 152 if (strcmp(ilstr_cstr(ils), want) != 0) { in ist_printf_2() 153 printf("want: %s\n", want); in ist_printf_2() 158 free(want); in ist_printf_2()
|
/illumos-gate/usr/src/tools/smatch/src/Documentation/ |
H A D | nocast-vs-bitwise.md | 20 that still need to act like integers, but you want to make it much 22 that you don't want to mistakenly/silently be returned as `int`, for 28 types, and that you'd never want to just use as a random integer (the 34 Generally, you want `__bitwise` if you are looking for type safety.
|
/illumos-gate/usr/src/cmd/sendmail/libsm/ |
H A D | t-match.c | 17 #define try(str, pat, want) \ argument 19 if (!SM_TEST(got == want)) \
|
/illumos-gate/usr/src/cmd/od/ |
H A D | od.c | 351 int want; in refill() local 370 want = blocksize; in refill() 371 if ((limit >= 0) && (want > limit)) { in refill() 372 want = limit; in refill() 376 while (want && input) { in refill() 379 c = (b->prod + want > (b->mask + 1)) ? in refill() 381 want; in refill() 398 want -= n; in refill()
|
/illumos-gate/usr/src/lib/libnsl/dial/ |
H A D | conn.c | 379 char *want, *altern; in chat() local 383 want = flds[k]; in chat() 386 altern = index(want, '-'); in chat() 389 ok = expect(want, fn); in chat() 397 want = index(altern, '-'); in chat() 398 if (want != NULL) in chat() 399 *want++ = NULLCHAR; in chat()
|
/illumos-gate/usr/src/tools/smatch/src/ |
H A D | FAQ | 15 project, and is totally independent from the users. I don't want to 32 decisions. I want the front-end to be considered a separate 40 they shouldn't be scared away by politics or licenses. If they want 42 they want to have a proprietary back-end, that's ok by me too. It's
|
/illumos-gate/usr/src/boot/i386/gptzfsboot/ |
H A D | gptldr.S | 82 mov %si,%ax # last byte we want to copy 89 mov %ax,%es # want to copy boot2 into. 98 sub $COPY_BLK_SZ/16,%ax # which we want boot2 copied
|
/illumos-gate/usr/src/uts/common/fs/smbsrv/ |
H A D | smb2_lease.c | 774 uint32_t have, want; /* lease flags */ in smb2_lease_acquire() local 833 want = op->op_oplock_state & CACHE_RWH; in smb2_lease_acquire() 834 if ((have & ~want) != 0 || lease->ls_breaking) { in smb2_lease_acquire() 897 want = op->op_oplock_state & CACHE_RWH; in smb2_lease_acquire() 898 if ((want & ~have) == 0) in smb2_lease_acquire() 923 want = op->op_oplock_state & CACHE_RWH; in smb2_lease_acquire() 924 if ((want & ~have) == 0) in smb2_lease_acquire()
|
/illumos-gate/usr/src/cmd/ndmpd/tlm/ |
H A D | tlm_lib.c | 84 tlm_get_write_buffer(long want, long *actual_size, in tlm_get_write_buffer() argument 95 want += align_size; in tlm_get_write_buffer() 96 want &= ~align_size; in tlm_get_write_buffer() 146 *actual_size = min(want, *actual_size); in tlm_get_write_buffer() 162 tlm_get_read_buffer(int want, int *error, in tlm_get_read_buffer() argument 177 want += align_size; in tlm_get_read_buffer() 178 want &= ~align_size; in tlm_get_read_buffer() 219 current_size = min(want, current_size); in tlm_get_read_buffer()
|
/illumos-gate/usr/src/cmd/lp/filter/postscript/postio/ |
H A D | README | 40 1: Use separate read and write processes. The -R2 option gets it or if you want 45 to whatever you want on the command line using the -B option. If you want a 51 the -q option or if you want it as the default initialize quiet (near line 122
|
/illumos-gate/usr/src/cmd/bnu/ |
H A D | conn.c | 572 char *want, *altern; local 576 want = flds[k]; 579 altern = index(want, '-'); 582 ok = expect(want, fn); 590 want = index(altern, '-'); 591 if (want != NULL) 592 *want++ = NULLCHAR;
|
/illumos-gate/usr/src/cmd/ipf/examples/ |
H A D | firewall | 17 Draw up a list of which services you want to allow users to use on the 19 want each host that is part of your firewall to be allowed to do, including
|
/illumos-gate/usr/src/uts/sun4/conf/ |
H A D | genalign.S | 32 ! the booter what alignment we want
|
/illumos-gate/usr/src/data/zoneinfo/ |
H A D | factory | 4 # For distributors who don't want to put time zone specification in
|
/illumos-gate/usr/src/contrib/ast/lib/package/ |
H A D | ksh.pkg | 12 The download file is a gzipped ksh executable. If you want
|
/illumos-gate/usr/src/cmd/last/ |
H A D | last.c | 114 static int want(struct utmpx *, char **, char **); 266 if (want(bp, &ut_host, &ut_user)) { in main() 511 want(struct utmpx *bp, char **host, char **user) in want() function
|
/illumos-gate/usr/src/grub/grub-0.97/ |
H A D | INSTALL | 33 directory. See the section "Operation Controls", if you want to 72 contains results you don't want to keep, you may remove or edit it. 75 called `autoconf'. You only need `configure.in' if you want to change 116 own directory. `cd' to the directory where you want the object files 154 If you want to set default values for `configure' scripts to share,
|