| /netbsd-src/lib/libedit/ |
| H A D | chartype.c | 50 ct_conv_cbuff_resize(ct_buffer_t *conv, size_t csize) in ct_conv_cbuff_resize() argument 54 if (csize <= conv->csize) in ct_conv_cbuff_resize() 57 conv->csize = csize; in ct_conv_cbuff_resize() 59 p = el_realloc(conv->cbuff, conv->csize * sizeof(*conv->cbuff)); in ct_conv_cbuff_resize() 61 conv->csize = 0; in ct_conv_cbuff_resize() 62 el_free(conv->cbuff); in ct_conv_cbuff_resize() 63 conv->cbuff = NULL; in ct_conv_cbuff_resize() 66 conv->cbuff = p; in ct_conv_cbuff_resize() 71 ct_conv_wbuff_resize(ct_buffer_t *conv, size_t wsize) in ct_conv_wbuff_resize() argument 75 if (wsize <= conv->wsize) in ct_conv_wbuff_resize() [all …]
|
| H A D | search.c | 117 static ct_buffer_t conv; in el_match() local 133 if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) { in el_match() 134 rv = regexec(&re, ct_encode_string(str, &conv), (size_t)0, NULL, in el_match() 142 if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) { in el_match() 143 rv = regexec(re, ct_encode_string(str, &conv)); in el_match() 150 if (re_comp(ct_encode_string(pat, &conv)) != NULL) in el_match() 153 return re_exec(ct_encode_string(str, &conv)) == 1; in el_match() 576 static ct_buffer_t conv; in cv_repeat_srch() local 578 c, el->el_search.patlen, ct_encode_string(el->el_search.patbuf, &conv)); in cv_repeat_srch()
|
| /netbsd-src/external/gpl3/binutils.old/dist/include/opcode/ |
| H A D | wasm.h | 196 WASM_OPCODE (0xa7, "i32.wrap/i64", i64, i32, conv, agnostic) 197 WASM_OPCODE (0xa8, "i32.trunc_s/f32", f32, i32, conv, signed) 198 WASM_OPCODE (0xa9, "i32.trunc_u/f32", f32, i32, conv, unsigned) 199 WASM_OPCODE (0xaa, "i32.trunc_s/f64", f64, i32, conv, signed) 200 WASM_OPCODE (0xab, "i32.trunc_u/f64", f64, i32, conv, unsigned) 201 WASM_OPCODE (0xac, "i64.extend_s/i32", i32, i64, conv, signed) 202 WASM_OPCODE (0xad, "i64.extend_u/i32", i32, i64, conv, unsigned) 203 WASM_OPCODE (0xae, "i64.trunc_s/f32", f32, i64, conv, signed) 204 WASM_OPCODE (0xaf, "i64.trunc_u/f32", f32, i64, conv, unsigned) 205 WASM_OPCODE (0xb0, "i64.trunc_s/f64", f64, i64, conv, signed) [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/include/opcode/ |
| H A D | wasm.h | 196 WASM_OPCODE (0xa7, "i32.wrap/i64", i64, i32, conv, agnostic) 197 WASM_OPCODE (0xa8, "i32.trunc_s/f32", f32, i32, conv, signed) 198 WASM_OPCODE (0xa9, "i32.trunc_u/f32", f32, i32, conv, unsigned) 199 WASM_OPCODE (0xaa, "i32.trunc_s/f64", f64, i32, conv, signed) 200 WASM_OPCODE (0xab, "i32.trunc_u/f64", f64, i32, conv, unsigned) 201 WASM_OPCODE (0xac, "i64.extend_s/i32", i32, i64, conv, signed) 202 WASM_OPCODE (0xad, "i64.extend_u/i32", i32, i64, conv, unsigned) 203 WASM_OPCODE (0xae, "i64.trunc_s/f32", f32, i64, conv, signed) 204 WASM_OPCODE (0xaf, "i64.trunc_u/f32", f32, i64, conv, unsigned) 205 WASM_OPCODE (0xb0, "i64.trunc_s/f64", f64, i64, conv, signed) [all …]
|
| /netbsd-src/external/gpl2/groff/dist/src/utils/afmtodit/ |
| H A D | afmtodit.pl | 6424 printf("spacewidth %d\n", conv($width{"space"})) if defined $width{"space"}; 6453 conv($kernx[$i])); 6505 printf("%s\t%d", $map{$ch, "0"}, conv($width{$ch})); 6530 printf(",%d,%d", conv($h), conv($d)); 6531 printf(",%d,%d,%d", conv($italic_correction), 6532 conv($left_math_fit), 6533 conv($subscript_correction)); 6536 printf(",%d,%d", conv($h), conv($d)); 6537 printf(",%d,%d", conv($italic_correction), 6538 conv($left_math_fit)); [all …]
|
| /netbsd-src/external/bsd/openpam/dist/lib/libpam/ |
| H A D | pam_vprompt.c | 70 const struct pam_conv *conv; in pam_vprompt() local 78 conv = convp; in pam_vprompt() 79 if (conv == NULL || conv->conv == NULL) { in pam_vprompt() 88 r = (conv->conv)(1, &msgp, &rsp, conv->appdata_ptr); in pam_vprompt()
|
| /netbsd-src/libexec/ftpd/ |
| H A D | conf.c | 82 struct ftpconv *conv, *cnext; in init_curclass() local 84 for (conv = curclass.conversions; conv != NULL; conv = cnext) { in init_curclass() 85 REASSIGN(conv->suffix, NULL); in init_curclass() 86 REASSIGN(conv->types, NULL); in init_curclass() 87 REASSIGN(conv->disable, NULL); in init_curclass() 88 REASSIGN(conv->command, NULL); in init_curclass() 89 cnext = conv->next; in init_curclass() 90 free(conv); in init_curclass() 147 struct ftpconv *conv, *cnext; in parse_conf() local 319 for (conv = curclass.conversions; conv != NULL; in parse_conf() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
| H A D | call.cc | 883 next_conversion (conversion *conv) in next_conversion() argument 885 if (conv == NULL in next_conversion() 886 || !has_next (conv->kind)) in next_conversion() 888 return conv->u.next; in next_conversion() 895 strip_standard_conversion (conversion *conv) in strip_standard_conversion() argument 897 while (conv in strip_standard_conversion() 898 && conv->kind != ck_user in strip_standard_conversion() 899 && has_next (conv->kind)) in strip_standard_conversion() 900 conv = next_conversion (conv); in strip_standard_conversion() 901 return conv; in strip_standard_conversion() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
| H A D | call.c | 871 next_conversion (conversion *conv) in next_conversion() argument 873 if (conv == NULL in next_conversion() 874 || conv->kind == ck_identity in next_conversion() 875 || conv->kind == ck_ambig in next_conversion() 876 || conv->kind == ck_list in next_conversion() 877 || conv->kind == ck_aggr) in next_conversion() 879 return conv->u.next; in next_conversion() 886 strip_standard_conversion (conversion *conv) in strip_standard_conversion() argument 888 while (conv in strip_standard_conversion() 889 && conv->kind != ck_user in strip_standard_conversion() [all …]
|
| /netbsd-src/usr.bin/audio/play/ |
| H A D | play.c | 288 audio_write(int fd, void *buf, size_t len, convert conv) in audio_write() argument 296 if (conv == NULL) in audio_write() 306 len = conv(buf, convert_buffer, len); in audio_write() 313 convert conv = NULL; in play() local 365 sizet_filesize, audiofd, &datasize, file, &conv)) < 0) { in play() 383 nw = audio_write(audiofd, addr, bufsize, conv); in play() 391 nw = audio_write(audiofd, addr, datasize, conv); in play() 411 convert conv = NULL; in play_fd() local 431 hdrlen = audioctl_write_fromhdr(buffer, nr, audiofd, &datasize, file, &conv); in play_fd() 447 nw = audio_write(audiofd, buffer, nr, conv); in play_fd() [all …]
|
| /netbsd-src/external/gpl2/grep/dist/intl/ |
| H A D | loadmsgcat.c | 150 domain->conv = (__gconv_t) -1; 153 domain->conv = (iconv_t) -1; 211 if (__gconv_open (outcharset, charset, &domain->conv, 214 domain->conv = (__gconv_t) -1; 229 domain->conv = iconv_open (outcharset, charset); 255 if (domain->conv != (__gconv_t) -1) 256 __gconv_close (domain->conv); 259 if (domain->conv != (iconv_t) -1) 260 iconv_close (domain->conv);
|
| /netbsd-src/external/mit/libuv/dist/test/ |
| H A D | task.h | 115 #define ASSERT_BASE(a, operator, b, type, conv) \ argument 122 "(%"conv" %s %"conv")\n", \ 135 #define ASSERT_BASE_STR(expr, a, operator, b, type, conv) \ argument 140 "(%"conv" %s %"conv")\n", \ 153 #define ASSERT_BASE_LEN(expr, a, operator, b, conv, len) \ argument 158 "(%.*"#conv" %s %.*"#conv")\n", \
|
| /netbsd-src/external/bsd/openpam/dist/modules/pam_unix/ |
| H A D | pam_unix.c | 70 struct pam_conv *conv; in pam_sm_authenticate() local 91 pam_err = pam_get_item(pamh, PAM_CONV, (const void **)&conv); in pam_sm_authenticate() 104 pam_err = (*conv->conv)(1, &msgp, &resp, conv->appdata_ptr); in pam_sm_authenticate()
|
| /netbsd-src/sys/kern/ |
| H A D | subr_devsw.c | 386 struct devsw_conv *conv; in devsw_attach() local 396 conv = &devsw_conv[i]; in devsw_attach() 397 if (conv->d_name == NULL || strcmp(devname, conv->d_name) != 0) in devsw_attach() 401 *bmajor = conv->d_bmajor; in devsw_attach() 403 *cmajor = conv->d_cmajor; in devsw_attach() 405 if (*bmajor != conv->d_bmajor || *cmajor != conv->d_cmajor) { in devsw_attach() 436 * If we already found a conv, we're done. Otherwise, find an in devsw_attach() 990 struct devsw_conv *conv; in devsw_name2blk() local 1038 struct devsw_conv *conv; devsw_name2chr() local [all...] |
| /netbsd-src/external/bsd/nvi/dist/common/ |
| H A D | conv.c | 377 MEMCPY(&sp->conv, &orig->conv, 1); in conv_init() 381 sp->conv.sys2int = cs_char2int; in conv_init() 382 sp->conv.int2sys = cs_int2char; in conv_init() 383 sp->conv.file2int = fe_char2int; in conv_init() 384 sp->conv.int2file = fe_int2char; in conv_init() 385 sp->conv.input2int = ie_char2int; in conv_init() 404 c2w = &sp->conv.file2int; in conv_enc() 405 w2c = &sp->conv.int2file; in conv_enc() 408 c2w = &sp->conv.input2int; in conv_enc()
|
| H A D | key.h | 17 sp->conv.file2int(sp, n, nlen, &buf, &wlen, &w) 19 sp->conv.int2file(sp, w, wlen, &sp->wp->cw, &nlen, &n) 21 sp->conv.sys2int(sp, n, nlen, &buf, &wlen, &w) 23 sp->conv.int2sys(sp, w, wlen, &sp->wp->cw, &nlen, &n) 25 sp->conv.int2sys(sp, w, wlen, &sp->wp->cw, &nlen, &n) 27 sp->conv.input2int(sp, n, nlen, &(cw), &wlen, &w)
|
| /netbsd-src/external/lgpl3/gmp/dist/cxx/ |
| H A D | osfuns.cc | 76 p->conv = DOPRNT_CONV_FIXED; in __gmp_doprnt_params_from_ios() 78 p->conv = DOPRNT_CONV_SCIENTIFIC; in __gmp_doprnt_params_from_ios() 80 p->conv = DOPRNT_CONV_GENERAL; in __gmp_doprnt_params_from_ios() 97 if (p->prec == 0 && p->conv != DOPRNT_CONV_FIXED) in __gmp_doprnt_params_from_ios()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/internal/ |
| H A D | read.d | 28 import std.conv : text; in skipData() 62 import std.conv : parse, text; 76 import std.conv : parse, text; 89 import std.conv : parse, text; 125 import std.conv : parse, text; 150 import std.conv : to, text; 178 import std.conv : text; 234 import std.conv : parse, text; 324 import std.conv : WideElementType; in unformatRange() 373 import std.conv : parseElement;
|
| /netbsd-src/distrib/sun3/ |
| H A D | MakeBootTape | 22 dd if=tapeboot of=$T obs=8k conv=sync 26 dd of=$T obs=8k conv=sync 30 dd of=$T obs=8k conv=sync
|
| /netbsd-src/sys/fs/msdosfs/ |
| H A D | msdosfs_conv.c | 391 int conv = 1; in msdosfs_unix2dosfn() local 459 && conv != 3) in msdosfs_unix2dosfn() 460 conv = 2; in msdosfs_unix2dosfn() 462 conv = 3; in msdosfs_unix2dosfn() 467 conv = 3; in msdosfs_unix2dosfn() 485 && conv != 3) in msdosfs_unix2dosfn() 486 conv = 2; in msdosfs_unix2dosfn() 488 conv = 3; in msdosfs_unix2dosfn() 493 conv = 3; in msdosfs_unix2dosfn() 512 if (conv != 3) { in msdosfs_unix2dosfn() [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/src/ |
| H A D | write-po.c | 388 iconv_t conv; in wrap() local 404 conv = (iconv_t)(-1); in wrap() 408 conv = (iconv_t)(-1); in wrap() 413 conv = (iconv_t)(-1); in wrap() 425 conv = (iconv_t)(-1); in wrap() 429 conv = iconv_open ("UTF-8", canon_charset); in wrap() 431 if (conv != (iconv_t)(-1)) in wrap() 481 if (conv != (iconv_t)(-1)) in wrap() 497 res = iconv (conv, in wrap() 596 if (conv != (iconv_t)(-1)) in wrap() [all …]
|
| /netbsd-src/external/lgpl3/gmp/dist/printf/ |
| H A D | doprntf.c | 74 printf (" conv=%d prec=%d\n", p->conv, p->prec)); in __gmp_doprnt_mpf() 84 if (p->conv == DOPRNT_CONV_GENERAL) in __gmp_doprnt_mpf() 89 switch (p->conv) { in __gmp_doprnt_mpf() 133 ASSERT ((p->conv == DOPRNT_CONV_FIXED && p->prec > -1) in __gmp_doprnt_mpf() 145 switch (p->conv) { in __gmp_doprnt_mpf() 305 + (p->conv == DOPRNT_CONV_GENERAL in __gmp_doprnt_mpf()
|
| /netbsd-src/lib/libc/citrus/modules/ |
| H A D | citrus_mapper_std.c | 91 u_int32_t conv; in rowcol_convert() local 117 conv = _region_peek8(&rc->rc_table, idx); in rowcol_convert() 120 conv = be16toh(_region_peek16(&rc->rc_table, idx*2)); in rowcol_convert() 123 conv = be32toh(_region_peek32(&rc->rc_table, idx*4)); in rowcol_convert() 129 if (conv == rc->rc_dst_invalid) { in rowcol_convert() 133 if (conv == rc->rc_dst_ilseq) in rowcol_convert() 136 *dst = conv; in rowcol_convert()
|
| /netbsd-src/external/gpl3/gcc/dist/libgfortran/runtime/ |
| H A D | environ.c | 262 unit_convert conv; member 446 elist[i].conv |= endian; in mark_single() 448 elist[i].conv = endian; in mark_single() 459 elist[i].conv |= endian; in mark_single() 461 elist[i].conv = endian; in mark_single() 727 return elist[i].conv; in get_unformatted_convert()
|
| /netbsd-src/external/gpl3/gcc/dist/libgfortran/io/ |
| H A D | open.c | 763 unit_convert conv; in st_open() local 833 conv = get_unformatted_convert (opp->common.unit); in st_open() 835 if (conv == GFC_CONVERT_NONE) in st_open() 839 conv = find_option (&opp->common, opp->convert, opp->convert_len, in st_open() 843 conv = compile_options.convert; in st_open() 849 flags.convert = conv & (GFC_CONVERT_R16_IEEE | GFC_CONVERT_R16_IBM); in st_open() 850 conv &= ~(GFC_CONVERT_R16_IEEE | GFC_CONVERT_R16_IBM); in st_open() 853 switch (conv) in st_open() 860 conv = __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ ? GFC_CONVERT_NATIVE : GFC_CONVERT_SWAP; in st_open() 864 conv = __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ ? GFC_CONVERT_SWAP : GFC_CONVERT_NATIVE; in st_open() [all …]
|