/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | z_Windows_NT-586_asm.asm | 25 _TEXT ENDS 27 _DATA ENDS 29 CONST ENDS 31 _BSS ENDS 33 $$SYMBOLS ENDS 35 $$TYPES ENDS 37 _TLS ENDS 60 _TEXT ENDS 108 _TEXT ENDS 128 _TEXT ENDS [all …]
|
/freebsd/contrib/libpcap/msdos/ |
H A D | pkt_rx0.asm | 23 _TEXT ENDS 25 _DATA ENDS 27 D_END EQU <_TEXT ENDS> 33 _TEXT ENDS 35 _DATA ENDS 37 D_END EQU <_DATA ENDS> 53 ENDS 195 _TEXT ENDS
|
/freebsd/lib/libutil/ |
H A D | login_times.3 | 39 .Fn in_lt "const login_time_t *lt" "time_t *ends" 41 .Fn in_ltm "const login_time_t *lt" "struct tm *t" "time_t *ends" 43 .Fn in_ltms "const login_time_t *lt" "struct tm *t" "time_t *ends" 45 .Fn in_lts "const login_time_t *lt" "time_t *ends" 95 described period begins and ends. 130 period ends relative to the time passed is returned.
|
H A D | login_times.c | 107 in_ltm(const login_time_t *ltm, struct tm *tt, time_t *ends) in in_ltm() argument 121 if (ends != NULL) { in in_ltm() 125 *ends = mktime(tt); in in_ltm()
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varmod-match-escape.mk | 85 # when the range ends with the character ']'. 87 # 'A' begins the range, 'B' is in the middle of the range, ']' ends the range, 90 # The ']' is part of the character range and at the same time ends the 93 # The first ']' is part of the character range and at the same time ends the 96 # The first ']' is part of the character range and at the same time ends the 99 # For negative character lists, the ']' ends the character range but does not 102 # is no practical need for a character range that ends at ']'.
|
/freebsd/contrib/mandoc/ |
H A D | tbl_int.h | 23 TBL_PART_OPTS, /* In the first line, ends with semicolon. */ 24 TBL_PART_LAYOUT, /* In the layout section, ends with full stop. */ 25 TBL_PART_DATA, /* In the data section, ends with TE. */ 26 TBL_PART_CDATA /* In a T{ block, ends with T} */
|
H A D | mandoc_escape.3 | 55 ends before the final 57 and the escape sequence ends with the final 72 ends before the next occurrence of the delimiter character 74 and the escape sequence ends with that second
|
H A D | tbl.7 | 48 lines, and ends with a 53 If the first input line of a table ends with a semicolon, it contains 117 The last layout line ends with a full stop. 266 It only ends if 273 the data cell, and the data line ends at this point.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXInstrInfo.cpp | 74 /// 1. If this block ends with no branches (it just falls through to its succ) 76 /// 2. If this block ends with only an unconditional branch, it sets TBB to be 78 /// 3. If this block ends with an conditional branch and it falls through to 83 /// 4. If this block ends with an conditional branch and an unconditional 111 // Block ends with fall-through condbranch. in analyzeBranch() 127 // If the block ends with NVPTX::GOTO and NVPTX:CBranch, handle it. in analyzeBranch() 136 // If the block ends with two NVPTX:GOTOs, handle it. The second one is not in analyzeBranch()
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | fsl,asrc.txt | 6 Ends Audio controller such as ESAI, SSI and SAI. It has three pairs to support 39 - fsl,asrc-rate : Defines a mutual sample rate used by DPCM Back Ends. 41 - fsl,asrc-width : Defines a mutual sample width used by DPCM Back Ends. 55 Ends, which can replace the fsl,asrc-width.
|
H A D | fsl,imx-asrc.yaml | 13 with other Back Ends Audio controller such as ESAI, SSI and SAI. It has 82 description: The mutual sample rate used by DPCM Back Ends 86 description: The mutual sample width used by DPCM Back Ends 107 Defines a mutual sample format used by DPCM Back Ends, which can
|
H A D | fsl,easrc.yaml | 62 description: Defines a mutual sample rate used by DPCM Back Ends 69 Defines a mutual sample format used by DPCM Back Ends
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | MemoryTaggingSupport.h | 31 // For an alloca valid between lifetime markers Start and Ends, call the 35 // Returns whether Ends covered all possible exits. If they did not, 36 // the caller should remove Ends to ensure that work done at the other 40 const SmallVectorImpl<IntrinsicInst *> &Ends,
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
H A D | MachOWriter.cpp | 44 SmallVector<size_t, 7> Ends; in totalSize() local 50 Ends.push_back(SymTabCommand.symoff + symTableSize()); in totalSize() 52 Ends.push_back(SymTabCommand.stroff + SymTabCommand.strsize); in totalSize() 61 Ends.push_back(DyLdInfoCommand.rebase_off + DyLdInfoCommand.rebase_size); in totalSize() 66 Ends.push_back(DyLdInfoCommand.bind_off + DyLdInfoCommand.bind_size); in totalSize() 71 Ends.push_back(DyLdInfoCommand.weak_bind_off + in totalSize() 77 Ends.push_back(DyLdInfoCommand.lazy_bind_off + in totalSize() 83 Ends.push_back(DyLdInfoCommand.export_off + DyLdInfoCommand.export_size); in totalSize() 93 Ends.push_back(DySymTabCommand.indirectsymoff + in totalSize() 107 Ends.push_back(LinkEditDataCommand.dataoff + in totalSize() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | MemoryTaggingSupport.cpp | 33 // If we have too many lifetime ends, give up, as the algorithm below is N^2. in maybeReachableFromEachOther() 50 const SmallVectorImpl<IntrinsicInst *> &Ends, in forAllReachableExits() argument 53 if (Ends.size() == 1 && PDT.dominates(Ends[0], Start)) { in forAllReachableExits() 54 Callback(Ends[0]); in forAllReachableExits() 58 for (auto *End : Ends) { in forAllReachableExits() 77 for_each(Ends, Callback); in forAllReachableExits() 94 // If it has multiple ends, they have to be unreachable from each other, so in isStandardLifetime()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
H A D | XCoreInstrInfo.cpp | 171 /// 1. If this block ends with no branches (it just falls through to its succ) 173 /// 2. If this block ends with only an unconditional branch, it sets TBB to be 175 /// 3. If this block ends with an conditional branch and it falls through to 180 /// 4. If this block ends with an conditional branch and an unconditional 217 // Block ends with fall-through condbranch. in analyzeBranch() 235 // If the block ends with conditional branch followed by unconditional, in analyzeBranch() 248 // If the block ends with two unconditional branches, handle it. The second in analyzeBranch() 259 // Likewise if it ends with a branch table followed by an unconditional branch. in analyzeBranch()
|
/freebsd/crypto/openssl/doc/internal/man3/ |
H A D | ossl_ends_with_dirsep.pod | 18 ossl_ends_with_dirsep() detects whether the I<path> ends with a directory 26 ossl_ends_with_dirsep() returns 1 if the I<path> ends with a directory
|
/freebsd/crypto/openssl/crypto/perlasm/ |
H A D | x86masm.pl | 132 XMMWORD ENDS 139 push(@out,"$segment ENDS\n"); 145 .bss ENDS 192 .CRT\$XCU ENDS
|
/freebsd/sys/dev/pccbb/ |
H A D | pccbb.c | 1067 uint32_t ends[2]; in cbb_cardbus_auto_open() local 1073 ends[0] = ends[1] = END_NONE; in cbb_cardbus_auto_open() 1095 if (rman_get_end(rle->res) > ends[i]) in cbb_cardbus_auto_open() 1096 ends[i] = rman_get_end(rle->res); in cbb_cardbus_auto_open() 1102 ends[i] = roundup2(ends[i], align) - 1; in cbb_cardbus_auto_open() 1106 if (ends[0] > starts[1]) { in cbb_cardbus_auto_open() 1112 if (ends[1] > starts[0]) { in cbb_cardbus_auto_open() 1121 cbb_cardbus_mem_open(sc->dev, 0, starts[0], ends[0]); in cbb_cardbus_auto_open() 1122 cbb_cardbus_mem_open(sc->dev, 1, starts[1], ends[1]); in cbb_cardbus_auto_open() 1133 starts[0], ends[0]); in cbb_cardbus_auto_open() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVInstrInfo.cpp | 160 // 1. If this block ends with no branches (it just falls through to its succ) 162 // 2. If this block ends with only an unconditional branch, it sets TBB to be 164 // 3. If this block ends with a conditional branch and it falls through to a 168 // 4. If this block ends with a conditional branch followed by an
|
/freebsd/sys/contrib/device-tree/Bindings/i2c/ |
H A D | i2c-s3c2410.txt | 46 /* Samsung GPIO variant ends here */ 50 /* Pinctrl variant ends here */
|
/freebsd/contrib/unbound/doc/ |
H A D | control_proto_spec.txt | 18 with a command, some whitespace allowed. Line ends with '\n'. 40 data ends with a line 'EOF' before connection close.
|
/freebsd/contrib/ldns/ldns/ |
H A D | dname.h | 20 * If a domain name ends with a dot ("."), it is called a Fully Qualified 178 * Checks whether the given dname string is absolute (i.e. ends with a '.') 185 * Checks whether the given dname is absolute (i.e. ends with a '.')
|
/freebsd/contrib/tcp_wrappers/ |
H A D | tcpdchk.c | 309 tcpd_warn("daemon list is empty or ends in EXCEPT"); in check_daemon_list() 337 tcpd_warn("client list is empty or ends in EXCEPT"); in check_client_list() 351 tcpd_warn("%s: daemon name ends in dot", pat); in check_daemon() 384 tcpd_warn("%s: user name ends in dot", pat); in check_user() 488 tcpd_warn("%s: domain or host name ends in dot", pat); in check_host()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerExtraCountersWindows.cpp | 27 // The section name, __libfuzzer_extra_countaaa ends with "aaa", so it sorts 54 // Here, the section name, __libfuzzer_extra_countzzz ends with "zzz", so it
|