/freebsd/crypto/krb5/src/lib/crypto/builtin/aes/ |
H A D | aestab.c | 31 #define sb_data(w) {\ argument 32 w(0x63), w(0x7c), w(0x77), w(0x7b), w(0xf2), w(0x6b), w(0x6f), w(0xc5),\ 33 w(0x30), w(0x01), w(0x67), w(0x2b), w(0xfe), w(0xd7), w(0xab), w(0x76),\ 34 w(0xca), w(0x82), w(0xc9), w(0x7d), w(0xfa), w(0x59), w(0x47), w(0xf0),\ 35 w(0xad), w(0xd4), w(0xa2), w(0xaf), w(0x9c), w(0xa4), w(0x72), w(0xc0),\ 36 w(0xb7), w(0xfd), w(0x93), w(0x26), w(0x36), w(0x3f), w(0xf7), w(0xcc),\ 37 w(0x34), w(0xa5), w(0xe5), w(0xf1), w(0x71), w(0xd8), w(0x31), w(0x15),\ 38 w(0x04), w(0xc7), w(0x23), w(0xc3), w(0x18), w(0x96), w(0x05), w(0x9a),\ 39 w(0x07), w(0x12), w(0x80), w(0xe2), w(0xeb), w(0x27), w(0xb2), w(0x75),\ 40 w(0x09), w(0x83), w(0x2c), w(0x1a), w(0x1b), w(0x6e), w(0x5a), w(0xa0),\ [all …]
|
/freebsd/contrib/less/ |
H A D | wide.uni | 1 /* Generated by "./mkutable -f1 W F -- unicode/EastAsianWidth.txt" on Sep 23 19:46:51 GMT 2024 */ 2 { 0x1100, 0x115f }, /* W */ 3 { 0x231a, 0x231b }, /* W */ 4 { 0x2329, 0x232a }, /* W */ 5 { 0x23e9, 0x23ec }, /* W */ 6 { 0x23f0, 0x23f0 }, /* W */ 7 { 0x23f3, 0x23f3 }, /* W */ 8 { 0x25fd, 0x25fe }, /* W */ 9 { 0x2614, 0x2615 }, /* W */ 10 { 0x2630, 0x2637 }, /* W */ [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/private/ |
H A D | common.h | 51 uint64_t w; in load64_le() local 52 memcpy(&w, src, sizeof w); in load64_le() 53 return w; in load64_le() 55 uint64_t w = (uint64_t) src[0]; in load64_le() 56 w |= (uint64_t) src[1] << 8; in load64_le() 57 w |= (uint64_t) src[2] << 16; in load64_le() 58 w |= (uint64_t) src[3] << 24; in load64_le() 59 w |= (uint64_t) src[4] << 32; in load64_le() 60 w |= (uint64_t) src[5] << 40; in load64_le() 61 w |= (uint64_t) src[6] << 48; in load64_le() [all …]
|
/freebsd/contrib/libpcap/ |
H A D | scanner.l | 182 W ([0-9A-Fa-f][0-9A-Fa-f]?[0-9A-Fa-f]?[0-9A-Fa-f]?) 191 V680 {W}:{W}:{W}:{W}:{W}:{W}:{W}:{W} 193 V670 ::{W}:{W}:{W}:{W}:{W}:{W}:{W} 194 V671 {W}::{W}:{W}:{W}:{W}:{W}:{W} 195 V672 {W}:{W}::{W}:{W}:{W}:{W}:{W} 196 V673 {W}:{W}:{W}::{W}:{W}:{W}:{W} 197 V674 {W}:{W}:{W}:{W}::{W}:{W}:{W} 198 V675 {W}:{W}:{W}:{W}:{W}::{W}:{W} 199 V676 {W}:{W}:{W}:{W}:{W}:{W}::{W} 200 V677 {W}:{W}:{W}:{W}:{W}:{W}:{W}:: [all …]
|
/freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
H A D | cert-onecolumn.pem | 39 w 66 W 115 W 127 W 135 W 147 W 177 w 199 w 200 w 201 W [all …]
|
/freebsd/crypto/openssh/ |
H A D | mdoc2man.awk | 42 while(w<nwords) { 45 retval=retval words[++w] 73 for(w=1;w<=nwords;w++) { 75 if(match(words[w],"^Li|Pf$")) { 77 } else if(match(words[w],"^Xo$")) { 82 } else if(match(words[w],"^Xc$")) { 87 w=nwords 88 } else if(match(words[w],"^Bd$")) { 90 if(match(words[w+1],"-literal")) { 93 w=nwords [all …]
|
/freebsd/sys/contrib/libb2/ |
H A D | blake2-impl.h | 32 uint32_t w = *p++; in load32() 33 w |= ( uint32_t )( *p++ ) << 8; in load32() 34 w |= ( uint32_t )( *p++ ) << 16; in load32() 35 w |= ( uint32_t )( *p++ ) << 24; in load32() 36 return w; in load32() 46 uint64_t w = *p++; in load64() 47 w |= ( uint64_t )( *p++ ) << 8; in load64() 48 w |= ( uint64_t )( *p++ ) << 16; in load64() 49 w |= ( uint64_t )( *p++ ) << 24; in load64() 50 w |= ( uint64_t )( *p++ ) << 32; in load64() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | SymbolDumper.cpp | 32 ScopedPrinter &W, CPUType CPU, bool PrintRecordBytes) in CVSymbolDumperImpl() argument 33 : Types(Types), ObjDelegate(ObjDelegate), W(W), CompilationCPUType(CPU), in CVSymbolDumperImpl() 56 ScopedPrinter &W; member in __anonfa45b97a0111::CVSymbolDumperImpl 80 DictScope S(W, "LocalVariableAddrRange"); in printLocalVariableAddrRange() 84 W.printHex("ISectStart", Range.ISectStart); in printLocalVariableAddrRange() 85 W.printHex("Range", Range.Range); in printLocalVariableAddrRange() 91 ListScope S(W, "LocalVariableAddrGap"); in printLocalVariableAddrGap() 92 W.printHex("GapStartOffset", Gap.GapStartOffset); in printLocalVariableAddrGap() 93 W in printLocalVariableAddrGap() [all...] |
H A D | TypeDumpVisitor.cpp | 164 codeview::printTypeIndex(*W, FieldName, TI, TpiTypes); in printTypeIndex() 168 codeview::printTypeIndex(*W, FieldName, TI, getSourceTypes()); in printItemIndex() 176 W->startLine() << getLeafTypeName(Record.kind()); in visitTypeBegin() 177 W->getOStream() << " (" << HexNumber(Index.getIndex()) << ")"; in visitTypeBegin() 178 W->getOStream() << " {\n"; in visitTypeBegin() 179 W->indent(); in visitTypeBegin() 180 W->printEnum("TypeLeafKind", unsigned(Record.kind()), in visitTypeBegin() 187 W->printBinaryBlock("LeafData", getBytesAsCharacters(Record.content())); in visitTypeEnd() 189 W->unindent(); in visitTypeEnd() 190 W->startLine() << "}\n"; in visitTypeEnd() [all …]
|
/freebsd/contrib/unbound/libunbound/ |
H A D | libworker.c | 88 static void handle_newq(struct libworker* w, uint8_t* buf, uint32_t len); 92 libworker_delete_env(struct libworker* w) in libworker_delete_env() argument 94 if(w->env) { in libworker_delete_env() 95 outside_network_quit_prepare(w->back); in libworker_delete_env() 96 mesh_delete(w->env->mesh); in libworker_delete_env() 97 context_release_alloc(w->ctx, w->env->alloc, in libworker_delete_env() 98 !w->is_bg || w->is_bg_thread); in libworker_delete_env() 99 sldns_buffer_free(w in libworker_delete_env() 112 libworker_delete(struct libworker * w) libworker_delete() argument 121 libworker_delete_event(struct libworker * w) libworker_delete_event() argument 133 struct libworker* w = (struct libworker*)calloc(1, sizeof(*w)); libworker_setup() local 266 handle_cancel(struct libworker * w,uint8_t * buf,uint32_t len) handle_cancel() argument 287 libworker_do_cmd(struct libworker * w,uint8_t * msg,uint32_t len) libworker_do_cmd() argument 315 struct libworker* w = (struct libworker*)arg; libworker_handle_control_cmd() local 332 struct libworker* w = (struct libworker*)arg; libworker_dobg() local 378 struct libworker* w; libworker_bg() local 578 setup_qinfo_edns(struct libworker * w,struct ctx_query * q,struct query_info * qinfo,struct edns_data * edns) setup_qinfo_edns() argument 607 struct libworker* w = libworker_setup(ctx, 0, NULL); libworker_fg() local 689 struct libworker* w = ctx->event_worker; libworker_attach_mesh() local 734 add_bg_result(struct libworker * w,struct ctx_query * q,sldns_buffer * pkt,int err,char * reason,int was_ratelimited) add_bg_result() argument 814 handle_newq(struct libworker * w,uint8_t * buf,uint32_t len) handle_newq() argument 869 struct libworker* w = (struct libworker*)arg; libworker_alloc_cleanup() local 881 struct libworker* w = (struct libworker*)q->env->worker; libworker_send_query() local [all...] |
/freebsd/sys/dev/usb/ |
H A D | usb_endian.h | 49 #define UGETB(w) \ argument 50 ((w)[0]) 52 #define UGETW(w) \ argument 53 ((w)[0] | \ 54 (((uint16_t)((w)[1])) << 8)) 56 #define UGETDW(w) \ argument 57 ((w)[0] | \ 58 (((uint16_t)((w)[1])) << 8) | \ 59 (((uint32_t)((w)[2])) << 16) | \ 60 (((uint32_t)((w)[3])) << 24)) [all …]
|
/freebsd/share/doc/papers/kernmalloc/ |
H A D | appendix.ms | 10 'ds / \\h'\\w' 'u-\\w'/'u'/ 11 'ds /* \\h'\\w' 'u-\\w'/'u'/* 23 \f2\s12\h'\\n(.lu-\w'\\*(=f'u'\\*(=f\fP\s0\h'|0u' 59 \f2\s14\h'\\n(.lu-\w'\\$1'u'\\$1\fP\s0\h'|0u'\c 105 \fI\h'\w' 'u-\w'/'u'/\fP\fI*\fP\c\c 120 \fI*\fP\fI\h'\w' 'u-\w'/'u'/\fP\c 123 \*(+K#define\*(-K MINBUCKET\h'|31n'4\h'|51n'\fI\h'\w' 'u-\w'/'u'/\fP\fI*\fP\c\c 125 4 => min allocation of 16 bytes \fI*\fP\fI\h'\w' 'u-\w'/'u'/\fP\c 131 \fI\h'\w' 'u-\w'/'u'/\fP\fI*\fP\c\c 136 \fI*\fP\fI\h'\w' 'u-\w'/'u'/\fP\c [all …]
|
/freebsd/contrib/unbound/sldns/ |
H A D | wire2str.c | 388 int w = vsnprintf(*str, *slen, format, args); in sldns_str_vprint() local 389 if(w < 0) { in sldns_str_vprint() 392 } else if((size_t)w >= *slen) { in sldns_str_vprint() 396 *str += w; in sldns_str_vprint() 397 *slen -= w; in sldns_str_vprint() 399 return w; in sldns_str_vprint() 404 int w; in sldns_str_print() local 407 w = sldns_str_vprint(str, slen, format, args); in sldns_str_print() 409 return w; in sldns_str_print() 428 int w in print_remainder_hex() local 438 int w = 0, comprloop = 0; sldns_wire2str_pkt_scan() local 489 int w = 0; sldns_rr_tcttl_scan() local 524 int w = 0; sldns_wire2str_rr_scan() local 595 int w = 0; sldns_wire2str_rrquestion_scan() local 620 int w = 0; sldns_wire2str_rr_unknown_scan() local 655 int flags, w = 0; rr_comment_dnskey() local 708 int w = 0; rr_comment_nsec3() local 735 int w = 0; sldns_wire2str_header_scan() local 782 int w = 0, n; sldns_wire2str_rdata_scan() local 820 int w = 0; sldns_wire2str_rdata_unknown_scan() local 853 int w = 0; sldns_wire2str_dname_scan() local 1037 int w = 0; sldns_wire2str_svcparam_port2str() local 1051 int w = 0; sldns_wire2str_svcparam_ipv4hint2str() local 1080 int w = 0; sldns_wire2str_svcparam_ipv6hint2str() local 1107 int w = 0; sldns_wire2str_svcparam_mandatory2str() local 1130 int w = 0; sldns_wire2str_svcparam_alpn2str() local 1168 int w = 0; sldns_wire2str_svcparam_ech2str() local 1362 int w; sldns_wire2str_int8_scan() local 1372 int w; sldns_wire2str_int16_scan() local 1382 int w; sldns_wire2str_int32_scan() local 1392 int w; sldns_wire2str_period_scan() local 1403 int w; sldns_wire2str_tsigtime_scan() local 1427 int w; sldns_wire2str_a_scan() local 1441 int w; sldns_wire2str_aaaa_scan() local 1472 int w = 0; sldns_wire2str_str_scan() local 1490 int i, w = 0; sldns_wire2str_apl_scan() local 1595 int w = 0; sldns_wire2str_nsec_scan() local 1638 int w; sldns_wire2str_nsec3_salt_scan() local 1656 int data, w; sldns_wire2str_cert_alg_scan() local 1702 int w = 0; loc_cm_print() local 1733 int w = 0; sldns_wire2str_loc_scan() local 1810 int bit, port, w = 0; sldns_wire2str_wks_scan() local 1882 int w = 0; sldns_wire2str_ipseckey_scan_internal() local 1925 int w=sldns_wire2str_ipseckey_scan_internal(d, dl, s, sl, pkt, pktlen, comprloop); sldns_wire2str_ipseckey_scan() local 1938 int w; sldns_wire2str_hip_scan() local 1963 int w; sldns_wire2str_int16_data_scan() local 1988 int w; sldns_wire2str_ilnp64_scan() local 2001 int w; sldns_wire2str_eui48_scan() local 2013 int w; sldns_wire2str_eui64_scan() local 2027 int w = 0; sldns_wire2str_tag_scan() local 2046 int w = 0; sldns_wire2str_long_str_scan() local 2059 int data, w; sldns_wire2str_tsigerror_scan() local 2083 int w = 0; sldns_wire2str_edns_llq_print() local 2119 int w = 0; sldns_wire2str_edns_ul_print() local 2133 int w = 0; sldns_wire2str_edns_nsid_print() local 2155 int w = 0; sldns_wire2str_edns_dau_print() local 2170 int w = 0; sldns_wire2str_edns_dhu_print() local 2184 int w = 0; sldns_wire2str_edns_n3u_print() local 2196 int w = 0; sldns_wire2str_edns_subnet_print() local 2260 int w = 0; sldns_wire2str_edns_keepalive_print() local 2280 int w = 0; sldns_wire2str_edns_ede_print() local 2325 int w = 0; sldns_wire2str_edns_option_print() local 2372 int w = 0; print_edns_opts() local 2406 int w = 0; sldns_wire2str_edns_scan() local [all...] |
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_blake2_impl.h | 37 uint32_t w; in load32() local 38 memcpy(&w, src, sizeof w); in load32() 39 return w; in load32() 52 uint64_t w; in load64() local 53 memcpy(&w, src, sizeof w); in load64() 54 return w; in load64() 71 uint16_t w; in load16() local 72 memcpy(&w, src, sizeof w); in load16() 73 return w; in load16() 81 static BLAKE2_INLINE void store16( void *dst, uint16_t w ) in store16() argument [all …]
|
/freebsd/sys/dev/sound/pci/hda/ |
H A D | hdaa_patches.c | 174 hdac_pin_patch(struct hdaa_widget *w) in hdac_pin_patch() argument 178 nid_t nid = w->nid; in hdac_pin_patch() 180 config = orig = w->wclass.pin.config; in hdac_pin_patch() 181 id = hdaa_codec_id(w->devinfo); in hdac_pin_patch() 182 subid = hdaa_card_id(w->devinfo); in hdac_pin_patch() 453 device_printf(w->devinfo->dev, in hdac_pin_patch() 457 w->wclass.pin.config = config; in hdac_pin_patch() 461 hdaa_widget_patch(struct hdaa_widget *w) in hdaa_widget_patch() argument 463 struct hdaa_devinfo *devinfo = w->devinfo; in hdaa_widget_patch() 467 orig = w->param.widget_cap; in hdaa_widget_patch() [all …]
|
H A D | hdaa.c | 179 static void hdaa_dump_pin_config(struct hdaa_widget *w, uint32_t conf); 268 struct hdaa_widget *w; in hdaa_channels_handler() local 279 w = hdaa_widget_get(devinfo, as->pins[i]); in hdaa_channels_handler() 280 if (w == NULL) in hdaa_channels_handler() 282 if (w->wclass.pin.connected == 1) in hdaa_channels_handler() 284 else if (w->wclass.pin.connected != 0) in hdaa_channels_handler() 286 if (w->eld != NULL && w->eld_len >= 8) in hdaa_channels_handler() 287 eld = w->eld; in hdaa_channels_handler() 379 hdaa_hpredir_handler(struct hdaa_widget *w) in hdaa_hpredir_handler() argument 381 struct hdaa_devinfo *devinfo = w->devinfo; in hdaa_hpredir_handler() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | COFFDumper.cpp | 312 W.printSymbolOffset(Label, Symbol, Offset); in printRelocatedField() 314 W.printHex(Label, RelocOffset); in printRelocatedField() 321 W.printBinaryBlock(Label, Block); in printBinaryBlockWithRelocs() 329 W.flush(); in printBinaryBlockWithRelocs() 331 ListScope D(W, "BlockRelocations"); in printBinaryBlockWithRelocs() 662 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress); in printDataDirectory() 663 W.printHex(FieldName + "Size", Data->Size); in printDataDirectory() 672 DictScope D(W, "ImageFileHeader"); in printFileHeaders() 673 W.printEnum("Machine", Obj->getMachine(), ArrayRef(ImageFileMachineType)); in printFileHeaders() 674 W.printNumber("SectionCount", Obj->getNumberOfSections()); in printFileHeaders() [all …]
|
H A D | XCOFFDumper.cpp | 47 ScopedPrinter &getScopedPrinter() const { return W; } in getScopedPrinter() 90 DictScope DS(W, "FileHeader"); in printFileHeaders() 91 W.printHex("Magic", Obj.getMagic()); in printFileHeaders() 92 W.printNumber("NumberOfSections", Obj.getNumberOfSections()); in printFileHeaders() 107 W.printHex("TimeStamp", FormattedTime, TimeStamp); in printFileHeaders() 109 W.printHex("Timestamp", TimeStamp); in printFileHeaders() 111 W.printHex("TimeStamp", TimeStamp == 0 ? "None" : "Reserved Value", in printFileHeaders() 119 W.printHex("SymbolTableOffset", Obj.getSymbolTableOffset64()); in printFileHeaders() 120 W.printNumber("SymbolTableEntries", Obj.getNumberOfSymbolTableEntries64()); in printFileHeaders() 122 W.printHex("SymbolTableOffset", Obj.getSymbolTableOffset32()); in printFileHeaders() [all …]
|
/freebsd/contrib/bearssl/src/symcipher/ |
H A D | aes_ct64_ctrcbc.c | 75 uint32_t w[16]; in br_aes_ct64_ctrcbc_ctr() local 87 w[i + 0] = br_swap32(iv0); in br_aes_ct64_ctrcbc_ctr() 88 w[i + 1] = br_swap32(iv1); in br_aes_ct64_ctrcbc_ctr() 89 w[i + 2] = br_swap32(iv2); in br_aes_ct64_ctrcbc_ctr() 90 w[i + 3] = br_swap32(iv3); in br_aes_ct64_ctrcbc_ctr() 99 memset(w + i, 0, (16 - i) * sizeof(uint32_t)); in br_aes_ct64_ctrcbc_ctr() 103 &q[i], &q[i + 4], w + (i << 2)); in br_aes_ct64_ctrcbc_ctr() 110 w + (i << 2), q[i], q[i + 4]); in br_aes_ct64_ctrcbc_ctr() 113 br_range_enc32le(tmp, w, 16); in br_aes_ct64_ctrcbc_ctr() 148 uint32_t w[4]; in br_aes_ct64_ctrcbc_mac() local [all …]
|
/freebsd/sys/netinet6/ |
H A D | in6_cksum.c | 94 uint16_t scope, *w; in _in6_cksum_pseudo() local 119 w = (u_int16_t *)&ip6->ip6_src; in _in6_cksum_pseudo() 120 sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3]; in _in6_cksum_pseudo() 121 sum += w[4]; sum += w[5]; sum += w[6]; sum += w[7]; in _in6_cksum_pseudo() 127 w = (u_int16_t *)&ip6->ip6_dst; in _in6_cksum_pseudo() 128 sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3]; in _in6_cksum_pseudo() 129 sum += w[4]; sum += w[5]; sum += w[6]; sum += w[7]; in _in6_cksum_pseudo() 152 uint16_t *w; in in6_cksumdata() local 168 w = data; in in6_cksumdata() 175 s_util.c[1] = *(uint8_t *)w; in in6_cksumdata() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | XCOFFEmitter.cpp | 37 : Obj(Obj), W(OS, llvm::endianness::big), ErrHandler(EH), in XCOFFWriter() 73 support::endian::Writer W; member in __anonb16345390111::XCOFFWriter 87 static void writeName(StringRef StrName, support::endian::Writer W) { in writeName() argument 93 W.write(NameRef); in writeName() 440 W.write<uint16_t>(Obj.Header.Magic ? Obj.Header.Magic : InitFileHdr.Magic); in writeFileHeader() 441 W.write<uint16_t>(Obj.Header.NumberOfSections ? Obj.Header.NumberOfSections in writeFileHeader() 443 W.write<int32_t>(Obj.Header.TimeStamp); in writeFileHeader() 445 W.write<uint64_t>(InitFileHdr.SymbolTableOffset); in writeFileHeader() 446 W.write<uint16_t>(InitFileHdr.AuxHeaderSize); in writeFileHeader() 447 W.write<uint16_t>(Obj.Header.Flags); in writeFileHeader() [all …]
|
/freebsd/crypto/openssl/crypto/bn/ |
H A D | bn_word.c | 13 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) in BN_mod_word() argument 22 if (w == 0) in BN_mod_word() 27 * If |w| is too long and we don't have BN_ULLONG then we need to fall in BN_mod_word() 30 if (w > ((BN_ULONG)1 << BN_BITS4)) { in BN_mod_word() 35 ret = BN_div_word(tmp, w); in BN_mod_word() 43 w &= BN_MASK2; in BN_mod_word() 47 * We can assume here that | w <= ((BN_ULONG)1 << BN_BITS4) | and so in BN_mod_word() 51 ret = ((ret << BN_BITS4) | ((a->d[i] >> BN_BITS4) & BN_MASK2l)) % w; in BN_mod_word() 52 ret = ((ret << BN_BITS4) | (a->d[i] & BN_MASK2l)) % w; in BN_mod_word() 55 (BN_ULLONG) w); in BN_mod_word() [all …]
|
/freebsd/crypto/openssl/providers/implementations/digests/ |
H A D | blake2_impl.h | 25 uint32_t w; in load32() local 26 memcpy(&w, src, sizeof(w)); in load32() 27 return w; in load32() 29 uint32_t w = ((uint32_t)src[0]) in load32() local 33 return w; in load32() 42 uint64_t w; in load64() local 43 memcpy(&w, src, sizeof(w)); in load64() 44 return w; in load64() 46 uint64_t w = ((uint64_t)src[0]) in load64() local 54 return w; in load64() [all …]
|
/freebsd/contrib/sendmail/libsm/ |
H A D | fvwrite.c | 64 register int w, s; variable 93 w = (*fp->f_write)(fp, p, SM_MIN(len, SM_IO_BUFSIZ)); 94 if (w <= 0) 96 if (w == 0 && errno == 0) 98 if (IS_IO_ERROR(fd, w, timeout)) 103 w = 0; 107 p += w; 108 len -= w; 110 } while ((uio->uio_resid -= w) != 0); 156 w = fp->f_w; [all …]
|
/freebsd/lib/libc/stdio/ |
H A D | fvwrite.c | 53 int w, s; in __sfvwrite() local 83 w = _swrite(fp, p, MIN(len, BUFSIZ)); in __sfvwrite() 84 if (w <= 0) in __sfvwrite() 86 p += w; in __sfvwrite() 87 len -= w; in __sfvwrite() 88 } while ((uio->uio_resid -= w) != 0); in __sfvwrite() 119 w = fp->_w; in __sfvwrite() 121 if (len < w) in __sfvwrite() 122 w = len; in __sfvwrite() 123 if (w > 0) { in __sfvwrite() [all …]
|