Searched refs:it (Results 251 - 275 of 858) sorted by relevance

<<11121314151617181920>>

/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DXcodeSDK.cpp316 for (auto it = begin; it != end; ++it) {
317 if (it->ends_with(".app")) {
318 auto next = it;
/freebsd-current/bin/date/
H A Ddate.c227 const struct iso8601_fmt *it; local
231 for (it = iso8601_fmts; it <= iso8601_selected; it++)
232 strlcat(fmtbuf, it->format_string, sizeof(fmtbuf));
293 /* if p has a ".ss" field then let's pretend it's not there */
/freebsd-current/crypto/openssl/include/openssl/
H A Dasn1t.h41 * ASN1_ITEM structure and determine how it is interpreted.
64 * because it avoids things like the d2i IMPLICIT
67 * MSTRING is a multiple string type, it is used
71 * has a special meaning, it is used as a mask
75 * that it will use indefinite length constructed
615 * Cache for ASN1 tag and length, so we don't keep re-reading it for things
630 const ASN1_ITEM *it, int tag, int aclass, char opt,
634 const ASN1_ITEM *it, int tag, int aclass, char opt,
638 const ASN1_ITEM *it, int tag, int aclass);
639 typedef int ASN1_ex_new_func(ASN1_VALUE **pval, const ASN1_ITEM *it);
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
H A DABISysV_riscv.cpp762 for (auto it : llvm::enumerate(regs)) {
764 if (it.value().name == "zero")
765 it.value().alt_name.SetCString("x0");
766 else if (it.value().name == "ra")
767 it.value().alt_name.SetCString("x1");
768 else if (it.value().name == "sp")
769 it.value().alt_name.SetCString("x2");
770 else if (it.value().name == "gp")
771 it.value().alt_name.SetCString("x3");
772 else if (it
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp436 // Count signaled threads. While at it, determine which signal is being sent
499 // we need to explicit issue suspend requests, so it is simpler to map it
636 for (auto it = m_mem_region_cache.begin(); it != m_mem_region_cache.end();
637 ++it) {
638 MemoryRegionInfo &proc_entry_info = it->first;
663 // If we made it here, we didn't find an entry that contained the given
766 for (const auto &it : m_mem_region_cache) {
767 if (it
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp444 // we need to explicit issue suspend requests, so it is simpler to map it
579 for (auto it = m_mem_region_cache.begin(); it != m_mem_region_cache.end();
580 ++it) {
581 MemoryRegionInfo &proc_entry_info = it->first;
606 // If we made it here, we didn't find an entry that contained the given
717 for (const auto &it : m_mem_region_cache) {
718 if (it.second.GetFilename() == module_file_spec.GetFilename()) {
719 file_spec = it
[all...]
/freebsd-current/share/mk/
H A Dbsd.dep.mk25 # dependencies, ${SRCS} are always part of it.
88 # since it will track dependencies itself. OBJS_DEPEND_GUESS is still used
123 # Multi-output targets both expect a .meta file and will fight over it. Only
124 # allow it on the .c file instead.
136 # Multi-output targets both expect a .meta file and will fight over it. Only
137 # allow it on the .c file instead.
250 # If using filemon then _EXTRADEPEND is skipped since it is not needed.
261 # For meta+filemon the .meta file is checked for since it is the dependency
284 # So we don't need it as a guessed dependency (it ma
[all...]
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DInputSection.cpp409 // section, but for --emit-relocs it is a virtual address.
422 // relocation in it pointing to discarded sections with R_*_NONE, which
454 // might redefine this default value and we must use it
456 // generate EXE or DSO it's trivial. Generating a relocatable
461 // addend and save it back to the file.
512 // R_ARM_TARGET2 which can be resolved relatively is not present as it never
609 for (auto it = range.first; it != range.second; ++it)
610 if (it
1090 auto it = morestackCalls.begin(); local
1291 auto it = partition_point( local
[all...]
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DWriter.cpp559 auto it = find_if(outputSegments, [](const OutputSegment *seg) { variable
562 assert(it != outputSegments.end());
563 c->cryptsize = (*it)->fileSize - c->cryptoff;
675 for (auto it = isec->relocs.begin(); it != isec->relocs.end(); ++it) {
676 lld::macho::Reloc &r = *it;
679 // have to worry about it.
684 // Skip over the following UNSIGNED relocation -- it's just there as the
686 // to emit rebase opcodes for it
769 auto it = llvm::find_if(minVersion, [&](const auto &p) { local
1033 auto it = concatOutputSections.find({ssec->segname, ssec->name}); local
[all...]
H A DSymbolTable.cpp25 auto it = symMap.find(cachedName); local
26 if (it == symMap.end())
28 return symVector[it->second];
359 // OutputSection -- it doesn't matter which one we pick.
545 // Transpose name[i] and name[i+1]. This is of edit distance 2 but it is
561 for (auto &it : map)
562 if (name.equals_insensitive(it.first))
563 return it.second;
587 for (auto &it : map)
588 if (canSuggestExternCForCXX(nameWithoutUnderscore, it
[all...]
/freebsd-current/sys/netinet/
H A Dsctputil.c1426 /* can't get more, forget it */
1449 sctp_iterator_work(struct sctp_iterator *it) argument
1460 sctp_it_ctl.cur_it = it;
1461 if (it->inp) {
1462 SCTP_INP_RLOCK(it->inp);
1463 SCTP_INP_DECR_REF(it->inp);
1465 if (it->inp == NULL) {
1471 if (it->function_atend != NULL) {
1472 (*it->function_atend) (it
1617 struct sctp_iterator *it; local
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvar-op-sunsh.mk31 # it is not possible to express the ':' as part of a literal variable name,
55 # 2020-10-04, the parser regarded it as an assignment operator modifier, in
63 # was taken for the :sh assignment operator modifier, even though it was
70 # Until 2020-10-04, the word 'shift' was also affected since it starts with
99 # text between the variable name and the assignment operator, it just has to
122 # XXX: This combination should not be allowed at all, as it is confusing.
134 # XXX: This combination should not be allowed at all, as it is confusing.
H A Dvarmod-assign.mk43 # When a '::=' modifier is evaluated as part of an .if condition, it happens
76 # variable is write-protected. Therefore it is rejected early with a
80 # In this variant, it is not as obvious that the name of the
81 # expression is empty. Assigning to it is rejected as well, with the
161 # modifier that creates a new variable creates it in the command line scope.
172 # expect: Global: ignoring delete 'CMD_NEW_VAR' as it is not found
190 # modifier that creates a new variable creates it in the target scope.
H A Ddirective-for-escape.mk16 # the loop. Not only would it need the escaping for the variable modifier
73 # Instead, it is meant to represent literal text, the only escaping mechanism
112 # To make the expression '$\' visible, define it to an actual word:
128 # XXX: It is not the job of ExprLen to parse an expression, it is naive to
142 # There, it is expanded by the .info directive, but even there a trailing
217 # body of the .for loop, where it was then interpreted as a literal newline,
258 # The expression '${.TARGET}' must be preserved as it is one of the 7 built-in
279 # The variable name ',' is unusual as it is not a pronounceable name, but the
293 # unfinished modifier ':S', as it is missing a comma.
H A Dopt-debug-file.mk4 # to a file instead of writing it to stderr.
14 # Before main.c 1.362 from 2020-10-03, it was not possible to disable debug
22 # when it is used in the condition below. Therefore, be careful when storing
H A Dvarmod-loop.mk8 # The variable name can be chosen freely, except that it must not contain a
36 # Demonstrate that it is possible to generate dollar signs using the
54 # variable in the scope of the expression and deleting it again after the
59 # loop variable to the value it had before the loop. This would result in
84 # variable value. But as soon as this value is evaluated, it goes through
103 # matter in which context it is evaluated. What happens in detail is:
104 # First, the modifier part "${8_DOLLARS}" is parsed without expanding it.
128 # to an empty string, plus it undefines the variable 'VAR'. This is the only
139 # these together makes it possible to undefine variables from the cmdline
149 # At this point, it stil
[all...]
H A Dvarparse-errors.mk14 LITERAL_DOLLAR= To get a dollar, double $$ it.
62 # minimal, that is, removing any part of it destroys the effect.
76 # or 'Bad modifier' when in fact the modifier was entirely correct, it was
H A Ddirective-for.mk61 # variables is restricted to the current makefile, it does not reach over to
89 # were simply inserted as plain text and then parsed as usual, which made it
111 # When the outer .for loop is expanded, it sees the expression ${i} and
112 # expands it. The inner loop then only sees the expression ${:Uouter} and
130 # taking quotes into account. This made it possible to have variable values
224 # Unlike in the shell, it is not a parse error.
255 # of an .if, the .for directive is just skipped, it does not even need a
275 # Before for.c 1.172 from 2023-05-08, when make parsed a .for loop, it
280 # When make scanned the outer .for loop, it did not recognize the inner .for
281 # loop as such and instead treated it a
[all...]
H A Dvarmod-ifelse.mk14 # condition. In the below example it becomes:
25 # Var_Parse and ParseVarname, it would be more useful and predictable
52 # When the :? is parsed, it is greedy. The else branch spans all the
84 # to var.c, it cannot distinguish this return value from an ordinary empty
128 # form written in the makefile becomes tricky when it is actually evaluated.
133 # expression, it already looks like this:
148 # it. This would allow to write the conditions exactly as seen below. That
190 # evaluated, it is common practice to enclose expressions in quotes, to avoid
229 # it was reverted in var.c 1.1029 from 2022-08-23.
242 # it'
[all...]
H A Ddirective-include-guard.mk19 # including it would not have any effect, not even on the special variable
40 # for any other reason) is only processed once, to see whether it is guarded.
94 # for any other reason) is only processed once, to see whether it is guarded.
104 # Triple negation is so uncommon that it's not recognized, even though it has
114 # If the guard variable is enclosed in spaces, it does not have an effect, as
124 # If the guard variable condition is enclosed in parentheses, it does not have
135 # it is otherwise equivalent to the above accepted forms.
153 # If the guard variable condition is enclosed in parentheses, it does not have
167 # variable, the character '!' has to be escaped, to prevent it fro
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_div_impl.inc20 // it is done for float32 by default) and (N-1) half-width iteration plus one
94 // denormal path it was already set by normalize( ), but setting it twice
148 // targets. Not used by default as it requires performing more work during
172 // then it increses until f(1/b) = 1 / b, maximum on (0, 1),
173 // then it decreses to f(1) = 2 - b
187 // and x_UQ0_hw should be rather large (it converges to 1/2 < 1/b_hw <= 1).
192 // considered to be 0 to be able to represent it in UQ0.HW.
228 // be not below that value (see g(x) above), so it is safe to decrement just
344 // adjust it t
[all...]
/freebsd-current/crypto/openssl/apps/lib/
H A Dhttp_server.c283 int http_server_get_asn1_req(const ASN1_ITEM *it, ASN1_VALUE **preq, argument
378 * the leading slash, so in case 'GET / ' it is now an empty string.
472 req = ASN1_item_d2i_bio(it, getbio != NULL ? getbio : cbio, NULL);
480 ASN1_item_free(req, it);
510 const ASN1_ITEM *it, const ASN1_VALUE *resp)
517 ASN1_item_i2d(resp, NULL, it)) > 0
518 && ASN1_item_i2d_bio(it, cbio, resp) > 0;
508 http_server_send_asn1_resp(BIO *cbio, int keep_alive, const char *content_type, const ASN1_ITEM *it, const ASN1_VALUE *resp) argument
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Windows/
H A DThreading.inc101 // which it interprets as a program setting its threads' name. We may be
111 // priorities of the thread so that it can perform background work without
217 // current process to only a single CPU group. On Windows, it is not
225 // The process affinity mask is spurious, due to an OS bug, ignore it.
/freebsd-current/sbin/ipf/ipmon/
H A Dipmon.c322 icmp_type_t *it; local
333 for (it = table; it->it_val != -2; it++)
334 if (it->it_val == type)
335 return (it);
490 icmp_type_t *it; local
494 it = find_icmptype(type, icmptypes4, sizeof(icmptypes4) / sizeof(*it));
495 if (it !
520 icmp_type_t *it; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc61 // stdcxx's cstdio doesn't include stdio.h, so it doesn't #undef the macros
195 // On OS X the executable path is saved to the stack by dyld. Reading it
596 // OS X with HFS+ it does.
664 // This is just ~/..., resolve it to the current user's home dir.
884 // If we don't have madvise, or it isn't beneficial, treat this as a no-op.
894 std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
902 it.IterationHandle = reinterpret_cast<intptr_t>(directory);
905 it.CurrentEntry = directory_entry(path_null.str(), follow_symlinks);
906 return directory_iterator_increment(it);
909 std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
[all...]

Completed in 301 milliseconds

<<11121314151617181920>>