Home
last modified time | relevance | path

Searched full:given (Results 1 – 25 of 5872) sorted by relevance

12345678910>>...235

/openbsd/src/gnu/usr.bin/binutils/opcodes/
Darm-dis.c156 arm_decode_shift (given, func, stream) in arm_decode_shift() argument
157 long given; in arm_decode_shift()
161 func (stream, "%s", arm_regnames[given & 0xf]);
163 if ((given & 0xff0) != 0)
165 if ((given & 0x10) == 0)
167 int amount = (given & 0xf80) >> 7;
168 int shift = (given & 0x60) >> 5;
184 func (stream, ", %s %s", arm_shift[(given & 0x60) >> 5],
185 arm_regnames[(given & 0xf00) >> 8]);
211 print_insn_arm (pc, info, given) in print_insn_arm() argument
[all …]
/openbsd/src/gnu/usr.bin/perl/t/op/
Dswitch.t21 CORE::given(3) {
22 CORE::when(3) { pass "CORE::given and CORE::when"; continue }
39 given(my $x = "bar") {
40 is($x, "bar", "given scope starts");
42 is($x, "foo", "given scope ends");
47 given(my $x = "foo") {
49 is($x, "bar", "given scope starts");
51 is($x, "foo", "given scope ends");
55 given("inside") { check_outside1() }
62 given(3) {
[all …]
/openbsd/src/gnu/usr.bin/perl/t/lib/feature/
Dswitch5 # No switch; given should be a bareword.
7 print STDOUT given;
9 Unquoted string "given" may clash with future reserved word at - line 3.
10 given
38 # Use switch; so given is a keyword
40 given("okay\n") { print }
46 given(1) { when(1) { print "okay" } }
52 given(1) { default { print "okay" } }
60 Can't "break" outside a given block at - line 3.
62 # switch out of scope; given should be a bareword.
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/
DInstructionSimplify.h146 /// Given operands for an Add, fold the result or return null.
150 /// Given operands for a Sub, fold the result or return null.
154 /// Given operands for a Mul, fold the result or return null.
158 /// Given operands for an SDiv, fold the result or return null.
162 /// Given operands for a UDiv, fold the result or return null.
166 /// Given operands for an SRem, fold the result or return null.
169 /// Given operands for a URem, fold the result or return null.
172 /// Given operand for an FNeg, fold the result or return null.
176 /// Given operands for an FAdd, fold the result or return null.
183 /// Given operands for an FSub, fold the result or return null.
[all …]
DObjCARCInstKind.h58 /// Test if the given class is a kind of user.
61 /// Test if the given class is objc_retain or equivalent.
64 /// Test if the given class is objc_autorelease or equivalent.
67 /// Test if the given class represents instructions which return their
71 /// Test if the given class represents instructions which do nothing if
75 /// Test if the given class represents instructions which do nothing if
79 /// Test if the given class represents instructions which are always safe
83 /// Test if the given class represents instructions which are never safe
87 /// Test if the given class represents instructions which are always safe
91 /// Test whether the given instruction can autorelease any pointer or cause an
/openbsd/src/gnu/llvm/clang/include/clang-c/
DCXSourceLocation.h78 * Returns non-zero if the given source location is in a system header.
83 * Returns non-zero if the given source location is in the main file of
94 * Retrieve a source range given the beginning and ending source
115 * the given source location.
123 * \param file [out] if non-NULL, will be set to the file to which the given
126 * \param line [out] if non-NULL, will be set to the line to which the given
129 * \param column [out] if non-NULL, will be set to the column to which the given
133 * buffer to which the given source location points.
141 * Retrieve the file, line and column represented by the given source
144 * Example: given the following source code in a file somefile.c
[all …]
DCXDiagnostic.h82 * Retrieve a diagnostic associated with the given CXDiagnosticSet.
225 * Format the given diagnostic in a manner that is suitable for display.
227 * This routine will format the given diagnostic to a string, rendering
228 * the diagnostic according to the various options given. The
252 * Determine the severity of the given diagnostic.
258 * Retrieve the source location of the given diagnostic.
266 * Retrieve the text of the given diagnostic.
290 * retrieves the category number for the given diagnostic.
305 * \returns The name of the given diagnostic category.
311 * Retrieve the diagnostic category text for a given diagnostic.
[all …]
/openbsd/src/usr.sbin/ldpctl/
Dldpctl.847 can be used to limit the scope of the command to the given neighbor.
67 if given, limit the output to the given address family.
92 if given, limit the output to the given address family.
99 if given, limit the output to the given address family.
106 if given, limit the output to the given address family.
113 if given, limit the output to the given address family.
/openbsd/src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
DLayer.h29 /// in the given module. If symbols are overridden by other definitions, then
98 /// Add a MaterializatinoUnit representing the given IR to the JITDylib
99 /// targeted by the given tracker.
102 /// Adds a MaterializationUnit representing the given IR to the given
108 /// Emit should materialize the given IR.
119 /// on the given IRLayer.
143 /// Adds a MaterializationUnit for the object file in the given memory buffer
144 /// to the JITDylib for the given ResourceTracker.
148 /// Adds a MaterializationUnit for the object file in the given memory buffer
149 /// to the JITDylib for the given ResourceTracker. The interface for the
[all …]
/openbsd/src/usr.sbin/eigrpctl/
Deigrpctl.864 can be used to limit the scope of the command to the given address family, autonomous system and/or…
65 If no argument is given, all neighbors from all EIGRP instances will be deleted.
88 if given, limit the output to the given address family.
120 if given, limit the output to the given address family and/or autonomous system.
130 if given, limit the output to the given address family and/or autonomous system.
141 if given, limit the output to the given address family and/or autonomous system.
162 if given, limit the output to the given address family and/or autonomous system.
/openbsd/src/gnu/usr.bin/binutils-2.17/opcodes/
Darm-dis.c1153 arm_decode_shift (long given, fprintf_ftype func, void *stream) in arm_decode_shift() argument
1155 func (stream, "%s", arm_regnames[given & 0xf]); in arm_decode_shift()
1157 if ((given & 0xff0) != 0) in arm_decode_shift()
1159 if ((given & 0x10) == 0) in arm_decode_shift()
1161 int amount = (given & 0xf80) >> 7; in arm_decode_shift()
1162 int shift = (given & 0x60) >> 5; in arm_decode_shift()
1178 func (stream, ", %s %s", arm_shift[(given & 0x60) >> 5], in arm_decode_shift()
1179 arm_regnames[(given & 0xf00) >> 8]); in arm_decode_shift()
1188 print_insn_coprocessor (struct disassemble_info *info, long given, in print_insn_coprocessor() argument
1218 if ((given & 0xf0000000) == 0xf0000000) in print_insn_coprocessor()
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DRuntimeLibcalls.h36 /// GetFPLibCall - Helper to return the right libcall for the given floating
45 /// getFPEXT - Return the FPEXT_*_* value for the given types, or
49 /// getFPROUND - Return the FPROUND_*_* value for the given types, or
53 /// getFPTOSINT - Return the FPTOSINT_*_* value for the given types, or
57 /// getFPTOUINT - Return the FPTOUINT_*_* value for the given types, or
61 /// getSINTTOFP - Return the SINTTOFP_*_* value for the given types, or
65 /// getUINTTOFP - Return the UINTTOFP_*_* value for the given types, or
69 /// getPOWI - Return the POWI_* value for the given types, or
73 /// Return the SYNC_FETCH_AND_* value for the given opcode and type, or
77 /// Return the outline atomics value for the given opcode, atomic ordering
[all …]
/openbsd/src/share/termtypes/
Dtermcap.559 The first name given is the most common abbreviation for the terminal.
60 The last name given should be a long name fully identifying the terminal,
465 sequence) are given by the two-letter code, an `=', then a string
477 to the number of lines affected by the operation, and the amount given is
505 Finally, characters may be given as three octal digits after a
511 may be given as
582 The number of columns on each line of the display is given by the
587 number of lines on the screen is given by the
595 the code to do this is given by the
626 that capability should be given as
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm-c/
DLLJIT.h152 * Mangles the given string according to the LLJIT instance's DataLayout, then
162 * Add a buffer representing an object file to the given JITDylib in the given
167 * Resources associated with the given object will be tracked by the given
174 * Add a buffer representing an object file to the given ResourceTracker's
175 * JITDylib in the given LLJIT instance. This operation transfers ownership of
179 * Resources associated with the given object will be tracked by ResourceTracker
187 * Add an IR module to the given JITDylib in the given LLJIT instance. This
192 * Resources associated with the given Module will be tracked by the given
200 * Add an IR module to the given ResourceTracker's JITDylib in the given LLJIT
205 * Resources associated with the given Module will be tracked by ResourceTracker
[all …]
/openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/
DAMDGPUBaseInfo.h189 /// \returns Wavefront size for given subtarget \p STI.
192 /// \returns Local memory size in bytes for given subtarget \p STI.
195 /// \returns Maximum addressable local memory size in bytes for given subtarget
199 /// \returns Number of execution units per compute unit for given subtarget \p
203 /// \returns Maximum number of work groups per compute unit for given subtarget
204 /// \p STI and limited by given \p FlatWorkGroupSize.
208 /// \returns Minimum number of waves per execution unit for given subtarget \p
212 /// \returns Maximum number of waves per execution unit for given subtarget \p
216 /// \returns Number of waves per execution unit required to support the given \p
221 /// \returns Minimum flat work group size for given subtarget \p STI.
[all …]
/openbsd/src/gnu/usr.bin/perl/t/lib/croak/
Dpp_ctl9 # NAME goto into given
12 CORE::given(1){f:}
14 Can't "goto" into a "given" block at - line 3.
16 # NAME goto from given topic expression
18 CORE::given(goto f){f:}
20 Can't "goto" into a "given" block at - line 2.
41 # NAME when outside given
47 # NAME default outside given
/openbsd/src/usr.bin/gprof/
Dgprof.165 reads the given object file (the default is
73 output shows the sum of the profile information in the given profile files.
92 Second, a flat profile is given.
104 If this option is given, all relevant information about the static function
144 option may be given.
147 may be given with each
158 option may be given.
161 may be given with each
177 option may be given.
180 may be given with each
[all …]
/openbsd/src/gnu/llvm/clang/include/clang/ASTMatchers/
DASTMatchers.h32 // In the given example, each time our matcher finds a match we get a callback
174 /// Given
188 /// Given
200 /// Given
212 /// Given
278 /// partially matching a given regex.
319 // the same instance of the given macro. in AST_POLYMORPHIC_MATCHER_P()
366 /// Given
390 /// Given
401 /// Given
[all …]
/openbsd/src/share/man/man9/
Dtimeout.9177 The timeout is scheduled against the given
213 except that the given timeout is configured with the
235 which schedules the given timeout to execute after at least
264 to schedule the given timeout.
270 which schedules the given timeout to execute at or after the absolute time
295 cancels any pending execution of the given timeout.
301 except that it also blocks until any current execution of the given timeout
306 function blocks until any current execution of the given timeout
318 macro indicates whether the given timeout is scheduled for execution.
323 macro indicates whether the given timeout has been initialized with
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/
DLegalizerInfo.h105 /// to decide whether a given operation is legal or not.
233 /// True iff all given predicates are true.
246 /// True iff any given predicates are true.
252 /// True iff the given type index is the specified type.
254 /// True iff the given type index is one of the specified types.
258 /// True iff the given type index is not the specified type.
265 /// True iff the given types for the given pair of type indexes is one of the
270 /// True iff the given types for the given pair of type indexes is one of the
288 /// True iff the specified type index is a scalar that's narrower than the given
292 /// True iff the specified type index is a scalar that's wider than the given
[all …]
/openbsd/src/gnu/llvm/clang/include/clang/AST/
DASTImporter.h57 // the different entries in a given redecl chain.
195 /// The path which we go through during the import of a given AST node.
301 /// \brief Import the given object, returns the result.
318 /// Import the given type from the "from" context into the "to"
324 /// Import the given qualified type from the "from" context into the "to"
330 /// Import the given type source information from the
337 /// Import the given attribute from the "from" context into the
344 /// Import the given declaration from the "from" context into the
357 /// Return the copy of the given declaration in the "to" context if
380 /// Import the given declaration context from the "from"
[all …]
/openbsd/src/sys/arch/mips64/include/
Dcache.h23 * Declare canonical cache functions for a given processor.
37 /* Invalidate all I$ for the given range */ \
39 /* Register a given page for I$ invalidation */ \
43 /* Writeback all D$ for the given page */ \
45 /* Writeback all D$ for the (currently mapped) given page */ \
47 /* Writeback all D$ for the given range */ \
49 /* Invalidate all D$ for the given range */ \
51 /* Enforce coherency of the given range */ \
/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCGCXXABI.h104 /// given function. Obvious common logic like being defined on a
121 /// Returns true if the given constructor or destructor is one of the
149 /// If the C++ ABI requires the given type be returned in a particular way,
168 /// Returns how an argument of the given record type should be passed.
182 /// Find the LLVM type used to represent the given member pointer
212 /// Return true if the given member pointer can be zero-initialized
221 /// Create a null member pointer of the given type.
224 /// Create a member pointer for the given method.
227 /// Create a member pointer for the given field.
231 /// Create a member pointer for the given member pointer constant.
[all …]
/openbsd/src/gnu/gcc/gcc/
Dgenattr.c181 printf ("/* Return nonzero if there is a bypass for given insn\n"); in main()
190 printf (" reservations of given insn. It may be used for better\n"); in main()
201 printf ("/* Initiate given DFA state, i.e. Set up the state\n"); in main()
204 printf ("/* The following function returns negative value if given\n"); in main()
205 printf (" insn can be issued in processor state described by given\n"); in main()
207 printf (" reflect the current and future reservations by given\n"); in main()
211 printf (" parameter is NULL the function changes given DFA state\n"); in main()
216 printf (" alternative reservations of given insn in given\n"); in main()
228 printf (" insn after issuing the 1st insn in given DFA state.\n"); in main()
229 printf (" The 1st insn should be issued in given state (i.e.\n"); in main()
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/Transforms/IPO/
DSampleContextTracker.h33 // profiles. The path from root node to a given node represents the context of
85 // base profile for given function or location; it also manages context tree
99 // Query context profile for a specific callee with given name at a given
103 // Get samples for indirect call targets for call site at given location.
106 // Query context profile for a given location. The full context
109 // Query context profile for a given sample contxt of a function.
111 // Get all context profile for given function.
116 // Query base profile for a given function. A base profile is a merged view
120 // Query base profile for a given function by name.
122 // Retrieve the context trie node for given profile context
[all …]

12345678910>>...235