Searched refs:bytes (Results 26 - 50 of 905) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/perl/cpan/Encode/lib/Encode/Unicode/
H A DUTF7.pm35 my $bytes = substr($str, 0, 0); # to propagate taintedness
40 $bytes .= $octets;
44 $bytes .= "+-";
50 $bytes .= "+$base64-";
58 return $bytes;
63 my ( $obj, $bytes, $chk ) = @_;
64 return undef unless defined $bytes;
65 my $len = length($bytes);
66 my $str = substr($bytes, 0, 0); # to propagate taintedness;
67 pos($bytes)
[all...]
/openbsd-current/usr.bin/ssh/
H A Dxmss_commons.h14 void to_byte(unsigned char *output, unsigned long long in, uint32_t bytes);
H A Dxmss_commons.c14 void to_byte(unsigned char *out, unsigned long long in, uint32_t bytes) argument
17 for (i = bytes-1; i >= 0; i--) {
/openbsd-current/regress/sys/kern/cmsgsize/
H A Dcmsgsize.c42 int so, bytes; local
58 bytes = test_cmsgsize(so, &src, &dst, CFG_SO_MAX_SEND_BUFFER,
60 if (bytes >= 0)
61 errx(1, "1: %d bytes sent\n", bytes);
70 bytes = test_cmsgsize(so, &src, &dst, CFG_SO_MAX_SEND_BUFFER,
72 if (bytes >= 0)
73 errx(1, "2: %d bytes sent\n", bytes);
82 bytes
[all...]
/openbsd-current/regress/usr.sbin/syslogd/
H A Dargs-sendsyslog-flags.pl18 qr/GIO fd -1 wrote \d+ bytes/ => 2,
H A Dargs-client-tcp-octet-nontransp.pl41 qr/tcp logger .* octet counting 2, use 2 bytes/ => 3,
43 qr/buffer 3 bytes/ => 1,
44 qr/tcp logger .* non transparent framing, use 3 bytes/ => 3,
46 qr/buffer 1 bytes/ => 1,
47 qr/tcp logger .* use 0 bytes/ => 0,
H A Dargs-client-tcp-octet-maxline.pl25 ${$self->{syslogd}}->loggrep(qr/tcp logger .* use \d+ bytes/, 5)
26 or die ref($self), " syslogd did not use bytes";
48 qr/buffer \d+ bytes/ => 2,
50 qr/, use /.(MAXLINE+1).qr/ bytes/ => 2,
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DOpcode.cpp49 s->Printf("%2.2x", m_data.inst.bytes[i]);
55 // Add spaces to make sure bytes display comes out even in case opcodes aren't
90 swap_buf[0] = m_data.inst.bytes[2];
91 swap_buf[1] = m_data.inst.bytes[3];
92 swap_buf[2] = m_data.inst.bytes[0];
93 swap_buf[3] = m_data.inst.bytes[1];
110 swap_buf[0] = m_data.inst.bytes[1];
111 swap_buf[1] = m_data.inst.bytes[0];
112 swap_buf[2] = m_data.inst.bytes[3];
113 swap_buf[3] = m_data.inst.bytes[
[all...]
/openbsd-current/gnu/gcc/libdecnumber/
H A Ddecimal128.c117 decDensePackCoeff (dn, d128->bytes, sizeof (d128->bytes), 0);
124 d128->bytes[0] = top;
144 d128->bytes[0] = (uByte) (comb << 2);
162 decDensePackCoeff (dn, d128->bytes, sizeof (d128->bytes), pad);
165 msd = ((unsigned) d128->bytes[1] << 2) & 0x0c; /* top 2 bits */
166 msd |= ((unsigned) d128->bytes[2] >> 6); /* low 2 bits */
167 d128->bytes[1] &= 0xfc;
168 d128->bytes[
[all...]
H A Ddecimal32.c117 decDensePackCoeff (dn, d32->bytes, sizeof (d32->bytes), 0);
124 d32->bytes[0] = top;
144 d32->bytes[0] = (uByte) (comb << 2);
162 decDensePackCoeff (dn, d32->bytes, sizeof (d32->bytes), pad);
165 msd = ((unsigned) d32->bytes[1] >> 4);
166 d32->bytes[1] &= 0x0f;
172 d32->bytes[0] = (uByte) (comb << 2);
197 uInt top = d32->bytes[
[all...]
H A Ddecimal64.c117 decDensePackCoeff (dn, d64->bytes, sizeof (d64->bytes), 0);
124 d64->bytes[0] = top;
144 d64->bytes[0] = (uByte) (comb << 2);
161 decDensePackCoeff (dn, d64->bytes, sizeof (d64->bytes), pad);
164 msd = ((unsigned) d64->bytes[1] >> 2) & 0x0f;
165 d64->bytes[1] &= 0x03;
171 d64->bytes[0] = (uByte) (comb << 2);
196 uInt top = d64->bytes[
[all...]
/openbsd-current/libexec/ld.so/
H A Dutil.c90 char bytes[KEYSZ + IVSZ]; local
92 if (_dl_getentropy(bytes, KEYSZ + IVSZ) != 0)
94 chacha_keysetup(&chacha, bytes, KEYSZ * 8);
95 chacha_ivsetup(&chacha, bytes + KEYSZ);
96 if (_dl_getentropy(bytes, KEYSZ + IVSZ) != 0)
/openbsd-current/gnu/llvm/llvm/utils/
H A Dcodegen-diff13 my ($addr, $bytes, $instr) = ($1, $2, $4);
15 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
17 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
18 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;
33 my ($addr, $bytes, $instr) = ($1, $3, $2);
34 $bytes =~ s/0x//g;
35 $bytes =~ s/\s+/ /g; # regularize whitespace
36 $bytes
[all...]
/openbsd-current/usr.bin/systat/
H A Dcache.c100 prev->bytes = COUNTER(new->bytes[0]) + COUNTER(new->bytes[1]);
124 ent->bytes = COUNTER(st->bytes[0]) + COUNTER(st->bytes[1]);
152 if (COUNTER(st->bytes[0]) + COUNTER(st->bytes[1]) < old->bytes)
155 sd = COUNTER(st->bytes[
[all...]
/openbsd-current/lib/libcrypto/cms/
H A Dcms_att.c111 const void *bytes, int len)
113 if (X509at_add1_attr_by_OBJ(&si->signedAttrs, obj, type, bytes, len))
121 const void *bytes, int len)
123 if (X509at_add1_attr_by_NID(&si->signedAttrs, nid, type, bytes, len))
131 const void *bytes, int len)
133 if (X509at_add1_attr_by_txt(&si->signedAttrs, attrname, type, bytes, len))
194 int type, const void *bytes, int len)
196 if (X509at_add1_attr_by_OBJ(&si->unsignedAttrs, obj, type, bytes, len))
204 const void *bytes, int len)
206 if (X509at_add1_attr_by_NID(&si->unsignedAttrs, nid, type, bytes, le
110 CMS_signed_add1_attr_by_OBJ(CMS_SignerInfo *si, const ASN1_OBJECT *obj, int type, const void *bytes, int len) argument
120 CMS_signed_add1_attr_by_NID(CMS_SignerInfo *si, int nid, int type, const void *bytes, int len) argument
130 CMS_signed_add1_attr_by_txt(CMS_SignerInfo *si, const char *attrname, int type, const void *bytes, int len) argument
193 CMS_unsigned_add1_attr_by_OBJ(CMS_SignerInfo *si, const ASN1_OBJECT *obj, int type, const void *bytes, int len) argument
203 CMS_unsigned_add1_attr_by_NID(CMS_SignerInfo *si, int nid, int type, const void *bytes, int len) argument
213 CMS_unsigned_add1_attr_by_txt(CMS_SignerInfo *si, const char *attrname, int type, const void *bytes, int len) argument
[all...]
/openbsd-current/regress/sys/netinet6/frag6/
H A Dfrag6_timeout.py24 m=1)/bytes(packet)[40:48])
26 offset=1, m=1)/bytes(packet)[48:56])
28 offset=2, m=1)/bytes(packet)[56:64])
30 offset=3, m=1)/bytes(packet)[64:72])
32 offset=4, m=1)/bytes(packet)[72:80])
34 offset=5)/bytes(packet)[80:88])
/openbsd-current/sys/dev/pci/drm/i915/gvt/
H A Dmmio.h92 void *p_data, unsigned int bytes);
94 void *p_data, unsigned int bytes);
97 void *p_data, unsigned int bytes);
99 void *p_data, unsigned int bytes);
105 void *pdata, unsigned int bytes, bool is_read);
108 void *p_data, unsigned int bytes);
H A Dpage_track.h35 u64 gpa, void *data, int bytes);
57 void *data, unsigned int bytes);
H A Dcfg_space.c47 * 256 bytes.)
63 * @bytes: number of bytes
70 u8 *src, unsigned int bytes)
77 for (; i < bytes && (off + i < sizeof(pci_cfg_space_rw_bmp)); i++) {
94 if (i < bytes)
95 memcpy(cfg_base + off + i, src + i, bytes - i);
112 * @bytes: number of bytes to read
118 void *p_data, unsigned int bytes)
69 vgpu_pci_cfg_mem_write(struct intel_vgpu *vgpu, unsigned int off, u8 *src, unsigned int bytes) argument
117 intel_vgpu_emulate_cfg_read(struct intel_vgpu *vgpu, unsigned int offset, void *p_data, unsigned int bytes) argument
145 emulate_pci_command_write(struct intel_vgpu *vgpu, unsigned int offset, void *p_data, unsigned int bytes) argument
167 emulate_pci_rom_bar_write(struct intel_vgpu *vgpu, unsigned int offset, void *p_data, unsigned int bytes) argument
181 emulate_pci_bar_write(struct intel_vgpu *vgpu, unsigned int offset, void *p_data, unsigned int bytes) argument
256 intel_vgpu_emulate_cfg_write(struct intel_vgpu *vgpu, unsigned int offset, void *p_data, unsigned int bytes) argument
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Utility/
H A DUUID.h30 /// Creates a uuid from the data pointed to by the bytes argument.
31 UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes.begin(), bytes.end()) { argument
53 /// Creates a UUID from the data pointed to by the bytes argument.
54 UUID(const void *bytes, uint32_t num_bytes) { argument
55 if (!bytes)
58 = UUID(llvm::ArrayRef<uint8_t>(reinterpret_cast<const uint8_t *>(bytes),
75 /// Decode as many UUID bytes as possible from the C string \a cstr.
83 /// A buffer of bytes tha
[all...]
/openbsd-current/gnu/usr.bin/perl/lib/
H A Dbytes.pm1 package bytes; package
8 $bytes::hint_bits = 0x00000008;
11 $^H |= $bytes::hint_bits;
15 $^H &= ~$bytes::hint_bits;
38 bytes - Perl pragma to expose the individual bytes of characters
42 Because the bytes pragma breaks encapsulation (i.e. it exposes the innards of
56 use bytes;
57 ... chr(...); # or bytes::chr
58 ... index(...); # or bytes
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Encode/lib/Encode/
H A DGSM0338.pm165 my ( $obj, $bytes, $chk ) = @_;
166 return undef unless defined $bytes;
167 my $str = substr( $bytes, 0, 0 ); # to propagate taintedness;
168 while ( length $bytes ) {
172 $c = substr( $bytes, 0, 1, '' );
174 } while ( length $bytes and $c eq $ESC );
183 $bytes .= $seq;
193 $bytes .= $seq;
199 $_[1] = $bytes if not ref $chk and $chk and !( $chk & Encode::LEAVE_SRC );
206 my $bytes
[all...]
/openbsd-current/gnu/llvm/lldb/packages/Python/lldbsuite/support/
H A Dseven.py14 def bitcast_to_string(b: bytes) -> str:
16 Take a bytes object and return a string. The returned string contains the
17 exact same bytes as the input object. (latin1 <-> unicode transformation is
22 def bitcast_to_bytes(s: str) -> bytes:
24 Take a string and return a bytes object. The returned object contains the
25 exact same bytes as the input string. (latin1 <-> unicode transformation isi
/openbsd-current/sys/dev/pci/drm/radeon/
H A Dradeon_dp_auxch.c67 int bytes; local
88 bytes = BARE_ADDRESS_SIZE;
91 bytes++;
93 bytes += msg->size;
114 AUX_SW_WR_BYTES(bytes));
116 AUX_SW_WR_BYTES(bytes));
149 AUX_SW_WR_BYTES(bytes) | AUX_SW_GO);
176 bytes = AUX_SW_REPLY_GET_BYTE_COUNT(tmp);
177 if (bytes) {
184 for (i = 0; i < bytes
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dtramp-frame.h54 bytes/mask pair. Search for this in the inferior at or around
65 ULONGEST bytes; member in struct:tramp_frame::__anon4716

Completed in 372 milliseconds

1234567891011>>