Home
last modified time | relevance | path

Searched refs:layer (Results 1 – 25 of 171) sorted by relevance

1234567

/openbsd-src/gnu/usr.bin/perl/t/lib/warnings/
H A Dperlio11 Invalid separator character %c%c%c in PerlIO layer specification %s
16 Argument list not closed for PerlIO layer \"%.*s\""
20 Unknown PerlIO layer \"%.*s\"
28 no warnings 'layer';
30 use warnings 'layer';
34 Invalid separator character '-' in PerlIO layer specification -aa at - line 6.
38 no warnings 'layer';
40 use warnings 'layer';
44 Argument list not closed for PerlIO layer "aa(" at - line 6.
51 no warnings 'layer';
[all …]
/openbsd-src/gnu/usr.bin/perl/lib/
H A DPerlIO.pm13 my $layer = shift;
14 if (exists $alias{$layer})
16 $layer = $alias{$layer}
20 $layer = "${class}::$layer";
22 eval { require $layer =~ s{::}{/}gr . '.pm' };
H A Dopen.pm73 foreach my $layer (split(/\s+/,$dscp)) {
74 $layer =~ s/^://;
75 if ($layer eq 'locale') {
82 $layer = "encoding($locale_encoding)";
85 my $target = $layer; # the layer name itself
92 push(@val,":$layer");
93 if ($layer =~ /^(crlf|raw)$/) {
94 $^H{"open_$type"} = $layer;
H A DDBM_Filter.pm196 foreach my $layer (@{ $LayerStack{$this} })
198 &{ $layer->{$type} }() if defined $layer->{$type} ;
206 foreach my $layer (reverse @{ $LayerStack{$this} })
208 &{ $layer->{$type} }() if defined $layer->{$type} ;
H A Dopen.t40 like( $warn, qr/Unknown PerlIO layer/,
56 like( $@, qr/Unknown PerlIO layer class/, 'should croak with unknown class' );
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperliol.pod7 /* Defining a layer ... */
36 A layer contains a "vtable", the table of I/O operations (at C level
41 first down the stack using "read" functions of each layer, then at the
66 is a layer called "raw" which repeatedly "pops" layers until
67 it reaches the first layer that has declared itself capable of
74 layers, it uses only the "unix" layer, which is a rather thin wrapper
83 the C code) uses the term "layer".
99 PerlIOl * next; /* Lower layer */
100 PerlIO_funcs * tab; /* Functions for this layer */
115 at least one layer ca
[all...]
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/t/lib/Parse/CPAN/Meta/
H A DTest.pm63 my $layer = shift;
64 $layer = "" unless defined $layer;
66 open my $fh, "<$layer", $file or die "open($file) failed: $!";
76 my $layer = shift;
79 my $content = slurp( $file, $layer );
/openbsd-src/gnu/usr.bin/perl/t/io/
H A Dperlio_leaks.t20 foreach my $layer(qw(:unix :stdio :perlio :crlf)){
25 if ($_ > 1 && $layer =~ /^:(unix|stdio)$/) {
28 open my $fh, "<$layer", $0 or die $!;
30 is fileno($fh), $base_fd, $layer;
H A Dperlio_fail.t27 like($warn,qr/in PerlIO layer/,"Got warning");
40 like($warn,qr/in PerlIO layer/,"Got warning");
/openbsd-src/gnu/llvm/lldb/source/Plugins/TraceExporter/common/
H A DTraceHTR.cpp250 HTRBlockLayerUP lldb_private::BasicSuperBlockMerge(IHTRLayer &layer) { in BasicSuperBlockMerge() argument
252 std::make_unique<HTRBlockLayer>(layer.GetLayerId() + 1); in BasicSuperBlockMerge()
254 if (layer.GetNumUnits()) { in BasicSuperBlockMerge()
270 layer.GetMetadataByIndex(0).GetFirstInstructionLoadAddress(); in BasicSuperBlockMerge()
271 size_t num_units = layer.GetNumUnits(); in BasicSuperBlockMerge()
275 layer.GetMetadataByIndex(i).GetFirstInstructionLoadAddress(); in BasicSuperBlockMerge()
296 layer.GetMetadataByIndex(i).GetFirstInstructionLoadAddress(); in BasicSuperBlockMerge()
298 layer.GetMetadataByIndex(i + 1).GetFirstInstructionLoadAddress(); in BasicSuperBlockMerge()
303 lldb::addr_t last_id = layer.GetMetadataByIndex(num_units - 1) in BasicSuperBlockMerge()
327 HTRBlock new_block = layer.MergeUnits(merge_start, n); in BasicSuperBlockMerge()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/TraceExporter/docs/
H A Dhtr.rst15 single instruction layer.
17 …**Block Layer:** Composed of blocks - a block in *layer n* refers to a sequence of blocks in *laye…
18 …*layer 1* refers to a sequence of instructions in *layer 0* (the instruction layer). Metadata is s…
19 a block layer. HTR contains one or more block layers.
21 **Pass:** A transformation applied to a *layer* that generates a new *layer* that is a more summari…
31 …ass* is applied to a *layer* to extract useful information (summarization) and compress the trace …
/openbsd-src/gnu/usr.bin/perl/t/uni/
H A Doverload.t161 foreach my $layer ('', $operator =~ /syswrite/ ? () : (':utf8')) {
162 open my $fh, "+>:raw$layer", $tmpfile or die $!;
205 is ($line, $E_acute, "$operator $layer");
207 is ($line, $E_acute, "$operator $layer");
209 is ($line, $E_acute, "$operator $layer");
211 is ($line, $e_acute, "$operator $layer");
213 is ($line, $e_acute, "$operator $layer");
215 is ($line, $e_acute, "$operator $layer");
/openbsd-src/gnu/usr.bin/perl/dist/IO/lib/IO/
H A DFile.pm
/openbsd-src/share/snmp/
H A DIF-MIB.txt80 interface sub-layer in the managed system. It is
82 from 1. The value for each interface sub-layer must remain
94 sub-layer in the managed system. This extension permits the
127 -- interfaces. Each sub-layer below the internetwork-layer
182 starting from 1. The value for each interface sub-layer
234 to report the interace's speed. For a sub-layer which has
243 "The interface's address at its protocol sub-layer. For
281 -- lower-layer interface(s)
332 "The number of packets, delivered by this sub-layer to a
333 higher (sub-)layer, which were not addressed to a multicast
[all …]
/openbsd-src/gnu/llvm/llvm/docs/tutorial/
H A DBuildingAJIT2.rst28 In this layer we'll learn more about the ORC layer concept by using a new layer,
53 constructor for this layer takes a reference to the execution session and the
54 layer below (as all layers do) plus an *IR optimization function* that it will
86 the ExecutionSession and output layer (standard practice for layers), along with
141 to see how layers compose. It also provides a neat entry point to the *layer*
196 layer through the transform function object, and (2) implementing the ORC
203 succeeds, passes the transformed module to the base layer. If the transform
226 These two operations, ``add`` and ``emit``, together constitute the layer
227 concept: A layer is a way to wrap a part of a compiler pipeline (in this case
232 to the layer's emit method when any symbol defined by that module is requested.
[all …]
H A DBuildingAJIT3.rst22 CompileOnDemand layer the JIT from `Chapter 2 <BuildingAJIT2.html>`_.
37 the ORC APIs provide us with a layer to lazily compile LLVM IR:
40 The CompileOnDemandLayer class conforms to the layer interface described in
130 previous layers we start by passing a reference to the next layer down in our
177 layer added to enable lazy function-at-a-time compilation. To build this example, use:
/openbsd-src/usr.bin/ssh/
H A Dxmss_hash_address.c11 void setLayerADRS(uint32_t adrs[8], uint32_t layer){ in setLayerADRS() argument
12 adrs[0] = layer; in setLayerADRS()
H A Dxmss_hash_address.h11 void setLayerADRS(uint32_t adrs[8], uint32_t layer);
/openbsd-src/sys/scsi/
H A Dcd.c1825 struct dvd_layer *layer; in dvd_read_physical() local
1855 for (i = 0, bufp = &buf[4], layer = &s->physical.layer[0]; in dvd_read_physical()
1856 i < 4; i++, bufp += 20, layer++) { in dvd_read_physical()
1857 bzero(layer, sizeof(*layer)); in dvd_read_physical()
1858 layer->book_version = bufp[0] & 0xf; in dvd_read_physical()
1859 layer->book_type = bufp[0] >> 4; in dvd_read_physical()
1860 layer->min_rate = bufp[1] & 0xf; in dvd_read_physical()
1861 layer->disc_size = bufp[1] >> 4; in dvd_read_physical()
1862 layer->layer_type = bufp[2] & 0xf; in dvd_read_physical()
1863 layer->track_path = (bufp[2] >> 4) & 1; in dvd_read_physical()
[all …]
/openbsd-src/sys/dev/pci/
H A Dif_ix.c1231 uint64_t layer;
1243 layer = sc->phy_layer; in ixgbe_media_status()
1245 if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_T || in ixgbe_media_status()
1246 layer & IXGBE_PHYSICAL_LAYER_1000BASE_T || in ixgbe_media_status()
1247 layer & IXGBE_PHYSICAL_LAYER_100BASE_TX || in ixgbe_media_status()
1248 layer & IXGBE_PHYSICAL_LAYER_10BASE_T) { in ixgbe_media_status()
1264 if (layer & IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU || in ixgbe_media_status()
1265 layer & IXGBE_PHYSICAL_LAYER_SFP_ACTIVE_DA) { in ixgbe_media_status()
1272 if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_LR) { in ixgbe_media_status()
1282 if (layer in ixgbe_media_status()
1235 uint64_t layer; ixgbe_media_status() local
1978 uint64_t layer; ixgbe_add_media_types() local
[all...]
/openbsd-src/usr.bin/file/magdir/
H A Danimation409 >2 byte&0xF0 0x10 MPEG ADTS, layer III, v1, 32 kbps
411 >2 byte&0xF0 0x20 MPEG ADTS, layer III, v1, 40 kbps
413 >2 byte&0xF0 0x30 MPEG ADTS, layer III, v1, 48 kbps
415 >2 byte&0xF0 0x40 MPEG ADTS, layer III, v1, 56 kbps
417 >2 byte&0xF0 0x50 MPEG ADTS, layer III, v1, 64 kbps
419 >2 byte&0xF0 0x60 MPEG ADTS, layer III, v1, 80 kbps
421 >2 byte&0xF0 0x70 MPEG ADTS, layer III, v1, 96 kbps
423 >2 byte&0xF0 0x80 MPEG ADTS, layer III, v1, 112 kbps
425 >2 byte&0xF0 0x90 MPEG ADTS, layer III, v1, 128 kbps
427 >2 byte&0xF0 0xA0 MPEG ADTS, layer III, v1, 160 kbps
[all …]
/openbsd-src/regress/usr.sbin/pkg_add/newcups/cups-libs-2.2.8/
H A D+DESC2 CUPS provides a portable printing layer for UNIX(r)-based operating
/openbsd-src/regress/usr.sbin/pkg_add/oldcups/cups-libs-2.2.7/
H A D+DESC2 CUPS provides a portable printing layer for UNIX(r)-based operating
/openbsd-src/gnu/usr.bin/perl/cpan/Encode/lib/Encode/
H A DPerlIO.pod10 C<Encode> provides a "layer" (see L<PerlIO>) which can transform
29 Either of the above forms of "layer" specifications can be made the default
147 my $layer = $use_perlio ? "<:raw" : "<:encoding($enc)";
148 open my $fh, $layer, $file or die "$file : $!";
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/
H A DMeta.pm401 my $layer = $] ge '5.008001' ? ':utf8' : '';
413 open my $fh, ">$layer", $file

1234567