Home
last modified time | relevance | path

Searched refs:raw (Results 1 – 25 of 575) sorted by relevance

12345678910>>...23

/openbsd/src/usr.sbin/dhcpd/
Dbootp.c67 struct dhcp_packet raw; in bootp() local
77 if (packet->raw->op != BOOTREQUEST) in bootp()
81 print_hw_addr(packet->raw->htype, packet->raw->hlen, in bootp()
82 packet->raw->chaddr), packet->raw->giaddr.s_addr ? in bootp()
83 inet_ntoa(packet->raw->giaddr) : packet->interface->name, in bootp()
89 hp = find_hosts_by_haddr(packet->raw->htype, packet->raw->chaddr, in bootp()
90 packet->raw->hlen); in bootp()
119 print_hw_addr (packet->raw->htype, in bootp()
120 packet->raw->hlen, packet->raw->chaddr)); in bootp()
127 print_hw_addr(packet->raw->htype, in bootp()
[all …]
Ddhcp.c110 print_hw_addr(packet->raw->htype, packet->raw->hlen, in dhcpdiscover()
111 packet->raw->chaddr), in dhcpdiscover()
112 packet->raw->giaddr.s_addr ? inet_ntoa(packet->raw->giaddr) : in dhcpdiscover()
118 inet_ntoa(packet->raw->giaddr)); in dhcpdiscover()
177 ((hp = find_hosts_by_haddr(packet->raw->htype, in dhcpdiscover()
178 packet->raw->chaddr, packet->raw->hlen)) != NULL)) { in dhcpdiscover()
194 print_hw_addr(packet->raw->htype, packet->raw->hlen, in dhcpdiscover()
195 packet->raw->chaddr)); in dhcpdiscover()
199 print_hw_addr(packet->raw->htype, packet->raw->hlen, in dhcpdiscover()
200 packet->raw->chaddr)); in dhcpdiscover()
[all …]
/openbsd/src/gnu/usr.bin/perl/t/opbasic/
Dcmp.t32 my @raw, @upgraded, @utf8;
34 push @raw, $_;
48 $iv_small, \$array[0], \$array[0], \$array[1], \$^X, @raw, @upgraded,
249 while (my ($i, $v) = each @raw) {
251 my ($raw, $cooked, $not);
252 $raw = $v;
254 $not = $raw eq $cooked ? '' : 'not ';
255 printf "%sok %d # eq, chr %d\n", $not, ++$ok, ord $raw;
257 $raw = $v;
259 $not = $raw ne $cooked ? 'not ' : '';
[all …]
/openbsd/src/sys/dev/pci/drm/amd/display/dc/
Ddc_dp_types.h170 uint8_t raw; member
203 uint8_t raw; member
211 uint8_t raw; member
221 uint8_t raw; member
231 uint8_t raw; member
239 uint8_t raw; member
249 uint8_t raw; member
263 uint8_t raw; member
277 uint8_t raw; member
286 uint8_t raw; member
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/t/
Dsource_handler.t82 raw => { exec => 'foo' },
89 raw => [
99 raw => "$perl -It/lib $file{source}",
103 raw => [],
107 raw => \$file{'source.sh'},
115 raw => { exec => [ $file{'source_args.sh'} ] },
124 raw => \$file{'source.bat'},
210 raw => \$file{source},
222 my $source = TAP::Parser::Source->new->raw( \$file{source} );
240 raw => \'',
[all …]
Dresults.t87 raw => '... this line is junk ... ',
91 raw => '... this line is junk ... ',
106 raw => '# this is a comment',
111 raw => '# this is a comment',
127 raw => 'Bailout! This blows!',
132 raw => 'Bailout! This blows!',
147 raw => '1..20',
154 raw => '1..20',
166 raw => '1..0 # SKIP help me, Rhonda!',
173 raw => '1..0 # SKIP help me, Rhonda!',
[all …]
Diterator_factory.t48 my $source = TAP::Parser::Source->new->raw( \'known-source' );
58 my $source = TAP::Parser::Source->new->raw( \'unknown-source' );
143 my $raw = $test->{source};
144 my $source = TAP::Parser::Source->new->raw( ref($raw) ? $raw : \$raw );
/openbsd/src/gnu/usr.bin/binutils/gdb/
Di387-tdep.c45 print_i387_value (char *raw, struct ui_file *file) in print_i387_value() argument
53 value = extract_typed_floating (raw, builtin_type_i387_ext); in print_i387_value()
69 print_i387_ext (unsigned char *raw, struct ui_file *file) in print_i387_ext() argument
76 sign = raw[9] & 0x80; in print_i387_ext()
77 integer = raw[7] & 0x80; in print_i387_ext()
78 exponent = (((raw[9] & 0x7f) << 8) | raw[8]); in print_i387_ext()
79 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]); in print_i387_ext()
80 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16) in print_i387_ext()
81 | (raw[5] << 8) | raw[4]); in print_i387_ext()
100 print_i387_value (raw, file); in print_i387_ext()
[all …]
/openbsd/src/sbin/isakmpd/
Disakmp_fld.fld37 ICOOKIE raw 8
38 RCOOKIE raw 8
43 MESSAGE_ID raw 4
58 VALUE raw
64 SIT raw
73 SPI raw
81 SA_ATTRS raw
86 DATA raw
92 DOI_DATA raw 3
93 DATA raw
[all …]
/openbsd/src/sys/arch/mips64/mips64/
Dfp_emulate.c778 uint64_t raw; in fpu_int_l() local
786 raw = fpu_load(p, tf, fmt, fs); in fpu_int_l()
792 raw = float32_to_int64((float32)raw); in fpu_int_l()
794 raw = float64_to_int64((float64)raw); in fpu_int_l()
799 fpu_store(p, tf, fmt, fd, raw); in fpu_int_l()
808 uint64_t raw; in fpu_int_w() local
816 raw = fpu_load(p, tf, fmt, fs); in fpu_int_w()
822 raw = float32_to_int32((float32)raw); in fpu_int_w()
824 raw = float64_to_int32((float64)raw); in fpu_int_w()
829 fpu_store(p, tf, fmt, fd, raw); in fpu_int_w()
[all …]
/openbsd/src/gnu/usr.bin/binutils/gdb/mi/
Dmi-console.c37 struct ui_file *raw; member
46 mi_console_file_new (struct ui_file *raw, in mi_console_file_new() argument
52 mi_console->raw = raw; in mi_console_file_new()
100 fputs_unfiltered (mi_console->prefix, mi_console->raw); in mi_console_raw_packet()
103 fputs_unfiltered ("\"", mi_console->raw); in mi_console_raw_packet()
104 fputstrn_unfiltered (buf, length_buf, mi_console->quote, mi_console->raw); in mi_console_raw_packet()
105 fputs_unfiltered ("\"\n", mi_console->raw); in mi_console_raw_packet()
109 fputstrn_unfiltered (buf, length_buf, 0, mi_console->raw); in mi_console_raw_packet()
110 fputs_unfiltered ("\n", mi_console->raw); in mi_console_raw_packet()
112 gdb_flush (mi_console->raw); in mi_console_raw_packet()
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/
DSource.pm130 sub raw { subroutine
132 return $self->{raw} unless @_;
133 $self->{raw} = shift;
235 my $raw = $self->raw;
239 $meta->{is_object} = UNIVERSAL::isa( $raw, 'UNIVERSAL' ) ? 1 : 0;
242 $meta->{class} = ref($raw);
245 my $ref = lc( ref($raw) );
250 my $source = $$raw;
251 $meta->{length} = length($$raw);
252 $meta->{has_newlines} = $$raw =~ /\n/ ? 1 : 0;
[all …]
DGrammar.pm383 raw => $line,
401 raw => $line,
420 raw => $line,
428 raw => $line,
437 raw => $line,
446 raw => $line,
474 chomp( my $raw = $yaml->get_raw );
475 $raw =~ s/^/$pad/mg;
479 raw => $raw,
488 raw => $line,
/openbsd/src/gnu/usr.bin/perl/cpan/Pod-Simple/t/
Dfcodes_l.t28 …'<Document><Para><L content-implicit="yes" raw="Net::Ping" to="Net::Ping" type="pod">Net::Ping</L>…
32 …'<Document><Para><L content-implicit="yes" raw="crontab(5)" to="crontab(5)" type="man">crontab(5)<…
36 …'<Document><Para><L content-implicit="yes" raw="login.conf(5)" to="login.conf(5)" type="man">login…
40 …'<Document><Para><L content-implicit="yes" raw="foo_bar(5)" to="foo_bar(5)" type="man">foo_bar(5)<…
44 …'<Document><Para><L content-implicit="yes" raw="Net::Ping/Ping-pong" section="Ping-pong" to="Net::…
48 …'<Document><Para><L content-implicit="yes" raw="Net::Ping/&#34;Ping-pong&#34;" section="Ping-pong"…
52 …'<Document><Para><L content-implicit="yes" raw="/&#34;Object Methods&#34;" section="Object Methods…
55 …'<Document><Para><L content-implicit="yes" raw="/Object Methods" section="Object Methods" type="po…
58 …'<Document><Para><L content-implicit="yes" raw="&#34;Object Methods&#34;" section="Object Methods"…
66 …'<Document><Para><L content-implicit="yes" raw="Net::Ping" to="Net::Ping" type="pod">Net::Ping</L>…
[all …]
/openbsd/src/sys/dev/acpi/
Dccpmic.c62 int32_t raw; member
191 sc->sc_lpat[i].raw = aml_val2int(res.v_package[2 * i + 1]); in ccpmic_get_lpat()
199 ccpmic_raw_to_temp(struct ccpmic_softc *sc, int32_t raw) in ccpmic_raw_to_temp() argument
208 if (raw >= lpat[i - 1].raw && raw <= lpat[i].raw) in ccpmic_raw_to_temp()
210 if (raw <= lpat[i - 1].raw && raw >= lpat[i].raw) in ccpmic_raw_to_temp()
216 raw0 = lpat[i - 1].raw; in ccpmic_raw_to_temp()
218 delta_raw = lpat[i].raw - raw0; in ccpmic_raw_to_temp()
221 return temp0 + (raw - raw0) * delta_temp / delta_raw; in ccpmic_raw_to_temp()
239 uint16_t raw; in ccpmic_thermal_opreg_handler() local
258 raw = ccpmic_read_1(sc, lo, 0); in ccpmic_thermal_opreg_handler()
[all …]
Dtipmic.c69 int32_t raw; member
236 sc->sc_lpat[i].raw = aml_val2int(res.v_package[2 * i + 1]); in tipmic_get_lpat()
244 tipmic_raw_to_temp(struct tipmic_softc *sc, int32_t raw) in tipmic_raw_to_temp() argument
253 if (raw >= lpat[i - 1].raw && raw <= lpat[i].raw) in tipmic_raw_to_temp()
255 if (raw <= lpat[i - 1].raw && raw >= lpat[i].raw) in tipmic_raw_to_temp()
261 raw0 = lpat[i - 1].raw; in tipmic_raw_to_temp()
263 delta_raw = lpat[i].raw - raw0; in tipmic_raw_to_temp()
266 return temp0 + (raw - raw0) * delta_temp / delta_raw; in tipmic_raw_to_temp()
304 uint16_t raw; in tipmic_thermal_opreg_handler() local
370 raw = (tipmic_read_1(sc, hi, 0) & 0x03) << 8; in tipmic_thermal_opreg_handler()
[all …]
/openbsd/src/gnu/usr.bin/perl/regen/
Dregen_lib.pl150 my $raw = "-*- " . ($lang eq 'None' ? "" : "mode: $lang; ") . "buffer-read-only: t -*-\n";
153 $raw .= "\n $args{file}\n";
157 $raw .= wrap(75, ' ', ' ', <<"EOM") . "\n";
166 $raw .= "!!!!!!! DO NOT EDIT THIS FILE !!!!!!!\n";
169 $raw .= "This file is built by $args{by}";
174 $raw .= ' from ' . join (', ', @from) . " and $last";
176 $raw .= " from $last";
179 $raw .= ".\n";
181 $raw .= "Any changes made here will be lost!\n";
182 $raw .= $args{final} if $args{final};
[all …]
/openbsd/src/gnu/usr.bin/binutils/gdb/gdbserver/
Di387-fp.c199 unsigned char *raw = &fp->st_space[regno * 16]; in i387_ftag() local
204 integer = raw[7] & 0x80; in i387_ftag()
205 exponent = (((raw[9] & 0x7f) << 8) | raw[8]); in i387_ftag()
206 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]); in i387_ftag()
207 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16) in i387_ftag()
208 | (raw[5] << 8) | raw[4]); in i387_ftag()
/openbsd/src/sys/dev/pci/drm/amd/display/dc/inc/hw/
Dcursor_reg_cache.h20 uint32_t raw; member
29 uint32_t raw; member
36 uint32_t raw; member
43 uint32_t raw; member
56 uint32_t raw; member
64 uint32_t raw; member
84 uint32_t raw; member
/openbsd/src/usr.bin/file/magdir/
Dspec4 # spec: file(1) magic for SPEC raw results (*.raw, *.rsf)
11 >>12 string . raw result text
15 >>37 string <: v%.4s raw result text
20 >>>20 string <: v%.4s raw result text
21 >>16 string <: v%.4s raw result text
/openbsd/src/gnu/llvm/clang/bindings/python/tests/cindex/
Dtest_comment.py32 raw = test1.raw_comment
34 self.assertEqual(raw, """/// Aaa.""")
38 raw = test2.raw_comment
40 self.assertEqual(raw, """/// Bbb.\n/// x""")
44 raw = f.raw_comment
46 self.assertIsNone(raw)
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove/State/Result/
DTest.pm142 sub raw { subroutine
144 my %raw = %$self;
147 delete $raw{name};
148 delete $raw{parser};
149 return \%raw;
/openbsd/src/gnu/usr.bin/perl/os2/OS2/OS2-Process/t/
Dos2_clipboard.t8 my $raw = "Just a random\nselection";
9 (my $cr = $raw) =~ s/\n/\r\n/g;
10 ok(ClipbrdText_set($raw), 'ClipbrdText_set');
95 ok(ClipbrdText_set($raw, 1), 'ClipbrdText_set() raw');
96 is(ClipbrdText, $raw, "ClipbrdText it back");
114 ok(ClipbrdData_set($raw), 'ClipbrdData_set()');
115 ok(ClipbrdData_set($raw, 0, $ar1), 'ClipbrdData_set(perltest/unknown_raw1)');
117 ok(ClipbrdData_set($raw, 1, $a1), 'ClipbrdData_set(perltest/unknown1)');
123 is(ClipbrdText($ar1), $raw, "ClipbrdText perltest/unknown_raw1 back");
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/
DExecutable.pm80 return 0.9 if $src->raw->{exec};
109 @command = @{ $source->raw->{exec} || [] };
112 @command = File::Spec->rel2abs( ${ $source->raw } )
113 if ${ $source->raw };
116 @command = @{ $source->raw };
/openbsd/src/sbin/fsck/
Dfsutil.c197 char *newname, *raw; in blockcheck() local
210 raw = rawname(newname); in blockcheck()
211 if (stat(raw, &stchar) == -1) { in blockcheck()
212 xperror(raw); in blockcheck()
213 printf("Can't stat %s\n", raw); in blockcheck()
217 return (raw); in blockcheck()
219 printf("%s is not a character device\n", raw); in blockcheck()

12345678910>>...23