/netbsd-src/external/bsd/tre/dist/tests/agrep/ |
H A D | basic.ok | 1 #### TEST: agrep random basic.in 5 #### TEST: agrep random < basic.in 9 #### TEST: agrep -c random basic.in 13 #### TEST: agrep -c random < basic.in 17 #### TEST: agrep -H random basic.in 18 basic.in:Some random text here. 21 #### TEST: agrep -H random < basic.in 25 #### TEST: agrep -l random basic.in 26 basic.in 29 #### TEST: agrep -l random < basic.in [all …]
|
/netbsd-src/external/mit/xorg/lib/xkeyboard-config/rules/ |
H A D | evdev | 111 hhk = hhk(basic) 126 * ben basic = pc+in(ben) 128 * dev basic = pc+in(deva) 129 * dzdwi basic = pc+bt(basic) 130 * fi basic = pc+fi(classic) 132 * guj basic = pc+in(guj) 133 * gur basic = pc+in(guru) 134 * ie laptop = pc+ie(basic) 137 * iu basic = pc+ca(ike) 138 * lo basic = pc+la(basic) [all …]
|
H A D | base | 173 hhk = hhk(basic) 188 * ben basic = pc+in(ben) 190 * dev basic = pc+in(deva) 191 * dzdwi basic = pc+bt(basic) 192 * fi basic = pc+fi(classic) 194 * guj basic = pc+in(guj) 195 * gur basic = pc+in(guru) 196 * ie laptop = pc+ie(basic) 199 * iu basic = pc+ca(ike) 200 * lo basic = pc+la(basic) [all …]
|
/netbsd-src/crypto/external/bsd/heimdal/dist/tests/gss/ |
H A D | Makefile.am | 7 SCRIPT_TESTS = check-basic check-gss check-gssmask check-context check-spnego check-ntlm 40 check-basic: check-basic.in Makefile 41 $(do_subst) < $(srcdir)/check-basic.in > check-basic.tmp && \ 42 chmod +x check-basic.tmp && \ 43 mv check-basic.tmp check-basic 65 check-basic.tmp \ 74 check-basic.in \
|
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/mips/ |
H A D | ChangeLog-2021 | 3 * basic.exp (arch): Delete. 7 * basic.exp: Define arch. 16 * basic.exp (run_micromips_test, run_sim_tests): New functions 26 * basic.exp: Don't unset target ldscript here. 38 * basic.exp: Delete sim target check. 49 * basic.exp: Run the dsp2 test. 55 * basic.exp: Add case for mips*-sde-elf*. 68 * basic.exp: Fix spelling in comment. Use canonical form of target 83 * basic.exp: Run the dsp test. 100 * basic.exp: Run new mdmx-ob and mdmx-ob-sb1 tests. [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
H A D | cfg.texi | 13 @findex basic-block.h 19 represent basic blocks and edges represent possible transfer of 20 control flow from one basic block to another. The data structures 22 @file{basic-block.h}. 39 * Basic Blocks:: The definition and representation of basic blocks. 50 @cindex basic block 52 A basic block is a straight-line sequence of code with only one entry 53 point and only one exit. In GCC, basic blocks are represented using 57 Special basic blocks represent possible entry and exit points of a 62 The @code{BASIC_BLOCK} array contains all basic blocks in an [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
H A D | cfg.texi | 13 @findex basic-block.h 19 represent basic blocks and edges represent possible transfer of 20 control flow from one basic block to another. The data structures 22 @file{basic-block.h}. 39 * Basic Blocks:: The definition and representation of basic blocks. 50 @cindex basic block 52 A basic block is a straight-line sequence of code with only one entry 53 point and only one exit. In GCC, basic blocks are represented using 57 Special basic blocks represent possible entry and exit points of a 62 The @code{BASIC_BLOCK} array contains all basic blocks in an [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/src/filesystem/ |
H A D | posix_compat.h | 173 FILE_BASIC_INFO basic; in stat_handle() local 174 if (!GetFileInformationByHandleEx(h, FileBasicInfo, &basic, sizeof(basic))) in stat_handle() 177 buf->st_mtim = filetime_to_timespec(basic.LastWriteTime); in stat_handle() 178 buf->st_atim = filetime_to_timespec(basic.LastAccessTime); in stat_handle() 180 if (!(basic.FileAttributes & FILE_ATTRIBUTE_READONLY)) in stat_handle() 182 if (basic.FileAttributes & FILE_ATTRIBUTE_DIRECTORY) { in stat_handle() 187 if (basic.FileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) { in stat_handle() 389 FILE_BASIC_INFO basic; in fchmod_handle() local 390 if (!GetFileInformationByHandleEx(h, FileBasicInfo, &basic, sizeof(basic))) in fchmod_handle() 392 DWORD orig_attributes = basic.FileAttributes; in fchmod_handle() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/HistoricalNotes/ |
H A D | 2002-05-12-InstListChange.txt | 10 Basically right now at the basic block level, each basic block contains an 15 To add or remove an instruction from a basic block, we need to get an 17 linear search of the basic block the instruction is contained in... just 21 they have to traverse basic blocks to remove constant propogated 24 Additionally, adding or removing instructions to a basic block 40 Iteration over the instructions in a basic block remains the simple: 46 After converting instructions over, I'll convert basic blocks and
|
H A D | 2003-06-25-Reoptimizer1.txt | 17 do not move code across basic-block boundaries. 26 The reoptimizer maintains a map between machine-code basic blocks and 28 first machine-code basic block of the hot loop region. 33 1) Do a DFS from the first machine-code basic block of the hot loop 36 2) Do a DFS from the last machine-code basic block of the hot loop 95 by tracing the LLVM-to-Machine code basic block map and then copying 96 each machine code basic block we think is in the hot region into the 98 generating the final optimized trace; we copy the same basic blocks 101 LLVM basic blocks are not typically used in the Reoptimizer except
|
/netbsd-src/tests/fs/ptyfs/ |
H A D | t_ptyfs.c | 38 ATF_TC(basic); 39 ATF_TC_HEAD(basic, tc) in ATF_TC_HEAD() argument 44 ATF_TC_BODY(basic, tc) in ATF_TC_BODY() argument 59 ATF_TP_ADD_TC(tp, basic); in ATF_TP_ADD_TCS()
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/ |
H A D | revoke.c | 269 parse_ocsp_basic(const void *data, size_t length, OCSPBasicOCSPResponse *basic) in parse_ocsp_basic() argument 275 memset(basic, 0, sizeof(*basic)); in parse_ocsp_basic() 307 basic, in parse_ocsp_basic() 315 free_OCSPBasicOCSPResponse(basic); in parse_ocsp_basic() 330 OCSPBasicOCSPResponse basic; in load_ocsp() local 347 ret = parse_ocsp_basic(data, length, &basic); in load_ocsp() 355 if (basic.certs) { in load_ocsp() 361 free_OCSPBasicOCSPResponse(&basic); in load_ocsp() 365 for (i = 0; i < basic.certs->len; i++) { in load_ocsp() 368 c = hx509_cert_init(context, &basic.certs->val[i], NULL); in load_ocsp() [all …]
|
/netbsd-src/sys/modules/examples/ |
H A D | README | 10 * executor - basic implementation of callout and RUN_ONCE 11 * fopsmapper - basic implementation of mmap with fileops fo_mmap 15 * mapper - basic implementation of mmap 17 * ping - basic ioctl(9) 18 * ping_block - basic ioctl(9) with a block device 20 * pollpal - implementation of basic poll(9) using palindrome 21 * readhappy - basic implementation of read(9) with happy numbers
|
/netbsd-src/tests/fs/umapfs/ |
H A D | t_basic.c | 25 ATF_TC(basic); 26 ATF_TC_HEAD(basic, tc) in ATF_TC_HEAD() argument 69 ATF_TC_BODY(basic, tc) in ATF_TC_BODY() argument 143 ATF_TP_ADD_TC(tp, basic); in ATF_TP_ADD_TCS()
|
/netbsd-src/external/gpl3/binutils/dist/include/cgen/ |
H A D | ChangeLog-0915 | 16 * basic-ops.h: (SUBWORDSIQI) Make declaration static. 24 * basic-modes.h (MAKEDI): New macro. 28 * basic-modes.h: New file. Moved here from opcodes/cgen-types.h. 29 * basic-ops.h: New file. Moved here from opcodes/cgen-ops.h.
|
/netbsd-src/tests/rump/rumpkern/ |
H A D | t_sp.sh | 54 test_case basic basic 81 basic() function 150 atf_add_test_case basic
|
/netbsd-src/external/gpl3/gdb.old/dist/include/cgen/ |
H A D | ChangeLog-0915 | 16 * basic-ops.h: (SUBWORDSIQI) Make declaration static. 24 * basic-modes.h (MAKEDI): New macro. 28 * basic-modes.h: New file. Moved here from opcodes/cgen-types.h. 29 * basic-ops.h: New file. Moved here from opcodes/cgen-ops.h.
|
/netbsd-src/external/gpl3/gdb/dist/include/cgen/ |
H A D | ChangeLog-0915 | 16 * basic-ops.h: (SUBWORDSIQI) Make declaration static. 24 * basic-modes.h (MAKEDI): New macro. 28 * basic-modes.h: New file. Moved here from opcodes/cgen-types.h. 29 * basic-ops.h: New file. Moved here from opcodes/cgen-ops.h.
|
/netbsd-src/external/gpl3/binutils.old/dist/include/cgen/ |
H A D | ChangeLog-0915 | 16 * basic-ops.h: (SUBWORDSIQI) Make declaration static. 24 * basic-modes.h (MAKEDI): New macro. 28 * basic-modes.h: New file. Moved here from opcodes/cgen-types.h. 29 * basic-ops.h: New file. Moved here from opcodes/cgen-ops.h.
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/wind/ |
H A D | rfc3492.txt | 36 Bootstring that allows a string of basic code points to uniquely 92 Bootstring, which allows strings composed from a small set of "basic" 102 points) can be represented by a basic string (sequence of basic 106 * Uniqueness: There is at most one basic string that represents a 109 * Reversibility: Any extended string mapped to a basic string can 110 be recovered from that basic string. 119 * Efficient encoding: The ratio of basic string length to extended 129 are represented as themselves in the basic string (although the 134 strings are case-folded prior to encoding, the basic string can use 181 "extended string") as a sequence of basic code points (the "basic [all …]
|
/netbsd-src/tests/fs/nullfs/ |
H A D | t_basic.c | 23 ATF_TC(basic); 24 ATF_TC_HEAD(basic, tc) in ATF_TC_HEAD() argument 26 atf_tc_set_md_var(tc, "descr", "basic nullfs functionality"); in ATF_TC_HEAD() 73 ATF_TC_BODY(basic, tc) in ATF_TC_BODY() argument 168 ATF_TP_ADD_TC(tp, basic); in ATF_TP_ADD_TCS()
|
/netbsd-src/external/bsd/file/dist/magic/magdir/ |
H A D | c64 | 234 >2 use basic-line 242 >>>>&0 use basic-line 250 !:mime application/x-commodore-basic 258 >2 use basic-line 263 >>&0 use basic-line 299 !:mime application/x-commodore-basic 304 >2 use basic-line 309 >>&0 use basic-line 322 >2 use basic-line 327 #>>&0 use basic-line [all …]
|
/netbsd-src/tests/lib/libc/sys/ |
H A D | t_pollts.c | 48 ATF_TC(basic); 49 ATF_TC_HEAD(basic, tc) in ATF_TC_HEAD() argument 56 ATF_TC_BODY(basic, tc) in ATF_TC_BODY() argument 196 ATF_TP_ADD_TC(tp, basic); in ATF_TP_ADD_TCS()
|
/netbsd-src/tests/lib/librt/ |
H A D | t_sem.c | 76 ATF_TC_WITH_CLEANUP(basic); 77 ATF_TC_HEAD(basic, tc) in ATF_TC_HEAD() argument 82 ATF_TC_BODY(basic, tc) in ATF_TC_BODY() argument 112 ATF_TC_CLEANUP(basic, tc) in ATF_TC_CLEANUP() argument 345 ATF_TP_ADD_TC(tp, basic); in ATF_TP_ADD_TCS()
|
/netbsd-src/usr.sbin/wlanctl/ |
H A D | wlanctl.c | 77 const char *basic; in print_rateset() local 84 basic = "*"; in print_rateset() 86 basic = ""; in print_rateset() 89 printf(" [%s%d.%d]", basic, rate / 10, rate % 10); in print_rateset() 91 printf(" %s%d.%d", basic, rate / 10, rate % 10); in print_rateset()
|