Home
last modified time | relevance | path

Searched full:w (Results 1 – 25 of 5671) sorted by relevance

12345678910>>...227

/freebsd-src/contrib/less/
H A Dwide.uni1 /* Generated by "./mkutable -f1 W F -- unicode/EastAsianWidth.txt" on Sun Sep 17 17:56:27 PDT 2023 */
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 { 0x2648, 0x2653 }, /* W */
[all...]
/freebsd-src/contrib/libpcap/
H A Dscanner.l182 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}
[all...]
/freebsd-src/sys/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dcommon.h51 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-src/crypto/openssl/test/recipes/04-test_pem_reading_data/
H A Dcert-onecolumn.pem39 w
66 W
115 W
127 W
135 W
147 W
177 w
199 w
200 w
201 W
[all …]
/freebsd-src/sys/contrib/libb2/
H A Dblake2-impl.h32 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-src/crypto/openssh/
H A Dmdoc2man.awk42 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-src/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp32 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 __anone8e9ad0c0111::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.printHex("Range", Gap.Range); in printLocalVariableAddrGap()
98 codeview::printTypeIndex(W, FieldName, TI, Types); in printTypeIndex()
[all …]
H A DTypeDumpVisitor.cpp164 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 in visitTypeEnd()
[all...]
/freebsd-src/contrib/unbound/libunbound/
H A Dlibworker.c88 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
314 struct libworker* w = (struct libworker*)arg; libworker_handle_control_cmd() local
331 struct libworker* w = (struct libworker*)arg; libworker_dobg() local
377 struct libworker* w; libworker_bg() local
577 setup_qinfo_edns(struct libworker * w,struct ctx_query * q,struct query_info * qinfo,struct edns_data * edns) setup_qinfo_edns() argument
606 struct libworker* w = libworker_setup(ctx, 0, NULL); libworker_fg() local
688 struct libworker* w = ctx->event_worker; libworker_attach_mesh() local
733 add_bg_result(struct libworker * w,struct ctx_query * q,sldns_buffer * pkt,int err,char * reason,int was_ratelimited) add_bg_result() argument
813 handle_newq(struct libworker * w,uint8_t * buf,uint32_t len) handle_newq() argument
868 struct libworker* w = (struct libworker*)arg; libworker_alloc_cleanup() local
880 struct libworker* w = (struct libworker*)q->env->worker; libworker_send_query() local
[all...]
/freebsd-src/sys/dev/usb/
H A Dusb_endian.h49 #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-src/share/doc/papers/kernmalloc/
H A Dappendix.ms10 '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-src/contrib/libarchive/libarchive/
H A Darchive_blake2_impl.h37 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-src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DXCOFFEmitter.cpp37 : Obj(Obj), W(OS, llvm::endianness::big), ErrHandler(EH), in XCOFFWriter()
73 support::endian::Writer W;
87 static void writeName(StringRef StrName, support::endian::Writer W) { in writeName()
93 W.write(NameRef); in nameShouldBeInStringTable()
440 W.write<uint16_t>(Obj.Header.Magic ? Obj.Header.Magic : InitFileHdr.Magic);
441 W.write<uint16_t>(Obj.Header.NumberOfSections ? Obj.Header.NumberOfSections in writeSectionHeader()
443 W.write<int32_t>(Obj.Header.TimeStamp); in writeSectionHeader()
445 W.write<uint64_t>(InitFileHdr.SymbolTableOffset); in writeSectionHeader()
446 W.write<uint16_t>(InitFileHdr.AuxHeaderSize); in writeSectionHeader()
447 W in writeSectionHeader()
70 support::endian::Writer W; global() member in __anon621dc6cb0111::XCOFFWriter
84 writeName(StringRef StrName,support::endian::Writer W) writeName() argument
[all...]
/freebsd-src/contrib/unbound/sldns/
H A Dwire2str.c388 int w = vsnprintf(*str, *slen, format, args); in sldns_str_vprint()
389 if(w < 0) { in sldns_str_vprint()
392 } else if((size_t)w >= *slen) { in sldns_str_vprint()
396 *str += w;
397 *slen -= w; in sldns_str_print()
399 return w; in sldns_str_print() local
404 int w; in sldns_str_print()
407 w = sldns_str_vprint(str, slen, format, args);
409 return w; in print_hex_buf()
428 int w in print_remainder_hex()
383 int w = vsnprintf(*str, *slen, format, args); sldns_str_vprint() local
423 int w = 0; print_remainder_hex() local
433 int w = 0, comprloop = 0; sldns_wire2str_pkt_scan() local
484 int w = 0; sldns_rr_tcttl_scan() local
519 int w = 0; sldns_wire2str_rr_scan() local
590 int w = 0; sldns_wire2str_rrquestion_scan() local
615 int w = 0; sldns_wire2str_rr_unknown_scan() local
650 int flags, w = 0; rr_comment_dnskey() local
703 int w = 0; rr_comment_nsec3() local
730 int w = 0; sldns_wire2str_header_scan() local
777 int w = 0, n; sldns_wire2str_rdata_scan() local
815 int w = 0; sldns_wire2str_rdata_unknown_scan() local
848 int w = 0; sldns_wire2str_dname_scan() local
1032 int w = 0; sldns_wire2str_svcparam_port2str() local
1046 int w = 0; sldns_wire2str_svcparam_ipv4hint2str() local
1075 int w = 0; sldns_wire2str_svcparam_ipv6hint2str() local
1102 int w = 0; sldns_wire2str_svcparam_mandatory2str() local
1125 int w = 0; sldns_wire2str_svcparam_alpn2str() local
1163 int w = 0; sldns_wire2str_svcparam_ech2str() local
1356 int w; sldns_wire2str_int8_scan() local
1366 int w; sldns_wire2str_int16_scan() local
1376 int w; sldns_wire2str_int32_scan() local
1386 int w; sldns_wire2str_period_scan() local
1397 int w; sldns_wire2str_tsigtime_scan() local
1421 int w; sldns_wire2str_a_scan() local
1435 int w; sldns_wire2str_aaaa_scan() local
1466 int w = 0; sldns_wire2str_str_scan() local
1484 int i, w = 0; sldns_wire2str_apl_scan() local
1589 int w = 0; sldns_wire2str_nsec_scan() local
1632 int w; sldns_wire2str_nsec3_salt_scan() local
1650 int data, w; sldns_wire2str_cert_alg_scan() local
1696 int w = 0; loc_cm_print() local
1727 int w = 0; sldns_wire2str_loc_scan() local
1804 int bit, port, w = 0; sldns_wire2str_wks_scan() local
1876 int w = 0; sldns_wire2str_ipseckey_scan_internal() local
1919 int w=sldns_wire2str_ipseckey_scan_internal(d, dl, s, sl, pkt, pktlen, comprloop); sldns_wire2str_ipseckey_scan() local
1932 int w; sldns_wire2str_hip_scan() local
1957 int w; sldns_wire2str_int16_data_scan() local
1982 int w; sldns_wire2str_ilnp64_scan() local
1995 int w; sldns_wire2str_eui48_scan() local
2007 int w; sldns_wire2str_eui64_scan() local
2021 int w = 0; sldns_wire2str_tag_scan() local
2040 int w = 0; sldns_wire2str_long_str_scan() local
2053 int data, w; sldns_wire2str_tsigerror_scan() local
2077 int w = 0; sldns_wire2str_edns_llq_print() local
2113 int w = 0; sldns_wire2str_edns_ul_print() local
2127 int w = 0; sldns_wire2str_edns_nsid_print() local
2149 int w = 0; sldns_wire2str_edns_dau_print() local
2164 int w = 0; sldns_wire2str_edns_dhu_print() local
2178 int w = 0; sldns_wire2str_edns_n3u_print() local
2190 int w = 0; sldns_wire2str_edns_subnet_print() local
2254 int w = 0; sldns_wire2str_edns_keepalive_print() local
2274 int w = 0; sldns_wire2str_edns_ede_print() local
2319 int w = 0; sldns_wire2str_edns_option_print() local
2366 int w = 0; print_edns_opts() local
2400 int w = 0; sldns_wire2str_edns_scan() local
[all...]
/freebsd-src/sys/dev/sound/pci/hda/
H A Dhdaa_patches.c168 hdac_pin_patch(struct hdaa_widget *w) in hdac_pin_patch() argument
172 nid_t nid = w->nid; in hdac_pin_patch()
174 config = orig = w->wclass.pin.config; in hdac_pin_patch()
175 id = hdaa_codec_id(w->devinfo); in hdac_pin_patch()
176 subid = hdaa_card_id(w->devinfo); in hdac_pin_patch()
410 device_printf(w->devinfo->dev, in hdac_pin_patch()
414 w->wclass.pin.config = config; in hdac_pin_patch()
418 hdaa_widget_patch(struct hdaa_widget *w) in hdaa_widget_patch()
420 struct hdaa_devinfo *devinfo = w->devinfo; in hdaa_widget_patch()
424 orig = w in hdaa_widget_patch()
417 hdaa_widget_patch(struct hdaa_widget * w) hdaa_widget_patch() argument
474 struct hdaa_widget *w; hdaa_patch() local
[all...]
H A Dhdaa.c179 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
461 hdaa_autorecsrc_handler(struct hdaa_audio_as * as,struct hdaa_widget * w) hdaa_autorecsrc_handler() argument
532 hdaa_presence_handler(struct hdaa_widget * w) hdaa_presence_handler() argument
579 struct hdaa_widget *w; hdaa_jack_poll_callback() local
602 hdaa_eld_dump(struct hdaa_widget * w) hdaa_eld_dump() argument
682 hdaa_eld_handler(struct hdaa_widget * w) hdaa_eld_handler() argument
746 struct hdaa_widget *w; hdaa_sense_init() local
798 struct hdaa_widget *w; hdaa_sense_deinit() local
940 hdaa_local_patch_pin(struct hdaa_widget * w) hdaa_local_patch_pin() argument
1034 hdaa_dump_pin_sb(struct sbuf * sb,struct hdaa_widget * w) hdaa_dump_pin_sb() argument
1133 struct hdaa_widget *w, *cw; hdaa_sysctl_caps() local
1324 struct hdaa_widget *w; hdaa_local_patch() local
1381 hdaa_widget_connection_parse(struct hdaa_widget * w) hdaa_widget_connection_parse() argument
1466 hdaa_widget_parse(struct hdaa_widget * w) hdaa_widget_parse() argument
1575 hdaa_widget_postprocess(struct hdaa_widget * w) hdaa_widget_postprocess() argument
1712 hdaa_widget_connection_select(struct hdaa_widget * w,uint8_t index) hdaa_widget_connection_select() argument
1844 struct hdaa_widget *w, *wp; hdaa_audio_setup() local
2103 struct hdaa_widget *w; hdaa_channel_stop() local
2226 struct hdaa_widget *w, *cw; hdaa_audio_ctl_ossmixer_init() local
2356 struct hdaa_widget *w, *wc; hdaa_audio_ctl_source_volume() local
2433 struct hdaa_widget *w, *wc; hdaa_audio_ctl_dest_volume() local
2502 struct hdaa_widget *w, *cw; hdaa_audio_ctl_dev_volume() local
2582 struct hdaa_widget *w; hdaa_audio_ctl_ossmixer_set() local
2683 struct hdaa_widget *w, *cw; hdaa_audio_ctl_recsel_comm() local
2758 struct hdaa_widget *w; hdaa_audio_ctl_ossmixer_setrecsrc() local
2924 struct hdaa_widget *w; hdaa_audio_parse() local
2986 struct hdaa_widget *w; hdaa_audio_postprocess() local
3001 struct hdaa_widget *w, *cw; hdaa_audio_ctl_parse() local
3163 struct hdaa_widget *w; hdaa_audio_as_parse() local
3321 struct hdaa_widget *w; hdaa_audio_trace_dac() local
3432 struct hdaa_widget *w, *wc; hdaa_audio_trace_adc() local
3526 struct hdaa_widget *w; hdaa_audio_undo_trace() local
3779 struct hdaa_widget *w; hdaa_audio_trace_as_in() local
3893 struct hdaa_widget *w, *wc; hdaa_audio_trace_to_out() local
3977 struct hdaa_widget *w; hdaa_audio_trace_as_extra() local
4129 struct hdaa_widget *w; hdaa_audio_disable_nonaudio() local
4153 struct hdaa_widget *w, *cw; hdaa_audio_disable_useless() local
4287 struct hdaa_widget *w, *cw; hdaa_audio_disable_unas() local
4382 struct hdaa_widget *w; hdaa_audio_disable_notselected() local
4416 struct hdaa_widget *w, *cw; hdaa_audio_disable_crossas() local
4518 struct hdaa_widget *w, *wc; hdaa_audio_ctl_source_amp() local
4625 struct hdaa_widget *w, *wc; hdaa_audio_ctl_dest_amp() local
4718 struct hdaa_widget *w; hdaa_audio_assign_names() local
4921 hdaa_adjust_amp(struct hdaa_widget * w,int ossdev,int found,int minamp,int maxamp) hdaa_adjust_amp() argument
4952 struct hdaa_widget *w, *cw; hdaa_audio_assign_mixers() local
5020 struct hdaa_widget *w; hdaa_audio_prepare_pin_ctrl() local
5211 struct hdaa_widget *w; hdaa_audio_commit() local
5272 struct hdaa_widget *w; hdaa_pcmchannel_setup() local
5677 hdaa_dump_pin(struct hdaa_widget * w) hdaa_dump_pin() argument
5746 hdaa_dump_pin_config(struct hdaa_widget * w,uint32_t conf) hdaa_dump_pin_config() argument
5766 struct hdaa_widget *w; hdaa_dump_pin_configs() local
5801 struct hdaa_widget *w, *cw; hdaa_dump_nodes() local
5897 struct hdaa_widget *w, *cw; hdaa_dump_dst_nid() local
5945 struct hdaa_widget *w; hdaa_dump_dac() local
5983 struct hdaa_widget *w; hdaa_dump_adc() local
6022 struct hdaa_widget *w; hdaa_dump_mix() local
6049 struct hdaa_widget *w; hdaa_pindump() local
6262 struct hdaa_widget *w; hdaa_unconfigure() local
6800 struct hdaa_widget *w; hdaa_unsol_intr() local
6884 struct hdaa_widget *w; hdaa_chan_type() local
[all...]
/freebsd-src/contrib/bearssl/src/symcipher/
H A Daes_ct64_ctrcbc.c75 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-src/sys/netinet6/
H A Din6_cksum.c94 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-src/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp312 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 in printFileHeaders()
[all...]
H A DXCOFFDumper.cpp47 ScopedPrinter &getScopedPrinter() const { return W; }
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 in printFileHeaders()
730 printUnexpectedRawAuxEnt(ScopedPrinter & W,uintptr_t AuxAddress) printUnexpectedRawAuxEnt() argument
1025 printAuxMemberHelper(PrintStyle Style,const char * MemberName,const T & Member,const V * AuxHeader,uint16_t AuxSize,uint16_t & PartialFieldOffset,const char * & PartialFieldName,ScopedPrinter & W) printAuxMemberHelper() argument
[all...]
/freebsd-src/crypto/openssl/providers/implementations/digests/
H A Dblake2_impl.h25 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-src/crypto/openssl/crypto/bn/
H A Dbn_word.c13 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-src/contrib/sendmail/libsm/
H A Dfvwrite.c64 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-src/lib/libc/stdio/
H A Dfvwrite.c53 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 …]
/freebsd-src/lib/msun/ld128/
H A Dk_tanl.c61 long double z, r, v, w, s; in __kernel_tanl() local
73 w = pio4lo - y; in __kernel_tanl()
74 x = z + w; in __kernel_tanl()
80 w = z * z; in __kernel_tanl()
81 r = T5 + w * (T9 + w * (T13 + w * (T17 + w * (T21 + in __kernel_tanl()
82 w * (T25 + w * (T29 + w * (T33 + in __kernel_tanl()
83 w * (T37 + w * (T41 + w * (T45 + w * (T49 + w * (T53 + in __kernel_tanl()
84 w * T57)))))))))))); in __kernel_tanl()
85 v = z * (T7 + w * (T11 + w * (T15 + w * (T19 + w * (T23 + in __kernel_tanl()
86 w * (T27 + w * (T31 + w * (T35 + in __kernel_tanl()
[all …]

12345678910>>...227