| /freebsd/sys/contrib/ck/include/ |
| H A D | ck_fifo.h | 52 struct ck_fifo_spsc_entry *garbage; member 110 fifo->head = fifo->tail = fifo->head_snapshot = fifo->garbage = stub; in ck_fifo_spsc_init() 115 ck_fifo_spsc_deinit(struct ck_fifo_spsc *fifo, struct ck_fifo_spsc_entry **garbage) in ck_fifo_spsc_deinit() argument 118 *garbage = fifo->garbage; in ck_fifo_spsc_deinit() 167 struct ck_fifo_spsc_entry *garbage; in ck_fifo_spsc_recycle() local 169 if (fifo->head_snapshot == fifo->garbage) { in ck_fifo_spsc_recycle() 171 if (fifo->head_snapshot == fifo->garbage) in ck_fifo_spsc_recycle() 175 garbage = fifo->garbage; in ck_fifo_spsc_recycle() 176 fifo->garbage = garbage->next; in ck_fifo_spsc_recycle() 177 return garbage; in ck_fifo_spsc_recycle() [all …]
|
| /freebsd/contrib/netbsd-tests/lib/libc/sys/ |
| H A D | t_msync.c | 51 msync_sync(const char *garbage, int flags) in msync_sync() argument 89 * write garbage to this position. in msync_sync() 96 len = strlen(garbage); in msync_sync() 97 rv = write(fd, garbage, len); in msync_sync() 100 str = "failed to write garbage"; in msync_sync() 106 * that garbage is at the given offset. in msync_sync() 113 if (memcmp(map + off, garbage, len) != 0) { in msync_sync() 140 str = msync_sync("garbage", MS_ASYNC); in ATF_TC_BODY() 199 str = msync_sync("garbage", MS_INVALIDATE); in ATF_TC_BODY() 215 str = msync_sync("garbage", MS_SYNC); in ATF_TC_BODY()
|
| /freebsd/lib/libc/tests/net/ |
| H A D | link_addr_test.cc | 247 // Valid address followed by garbage in ATF_TEST_CASE_BODY() 297 static constexpr auto garbage = std::byte{0xcc}; in ATF_TEST_CASE_BODY() 304 * place it in buf. Ensure it's followed by a trailing byte of garbage in ATF_TEST_CASE_BODY() 311 std::ranges::fill(buf, garbage); in ATF_TEST_CASE_BODY() 322 ATF_REQUIRE(*rbegin(buf) == garbage); in ATF_TEST_CASE_BODY() 338 ATF_REQUIRE(*rbegin(buf) == garbage); in ATF_TEST_CASE_BODY() 346 ATF_REQUIRE(*rbegin(buf) == garbage); in ATF_TEST_CASE_BODY() 359 ATF_REQUIRE(*rbegin(buf) == garbage); in ATF_TEST_CASE_BODY() 368 ATF_REQUIRE(*rbegin(buf) == garbage); in ATF_TEST_CASE_BODY() 381 ATF_REQUIRE(*rbegin(buf) == garbage); in ATF_TEST_CASE_BODY() [all …]
|
| /freebsd/crypto/openssl/test/certs/ |
| H A D | cert-key-cert.pem | 1 Some garbage at the beginning 30 Some garbage in the middle 60 More garbage in the middle 90 Some garbage at the end
|
| /freebsd/bin/sh/tests/builtins/ |
| H A D | trap3.0 | 3 trap '' garbage && exit 3 4 trap - garbage && exit 3 5 trap true garbage && exit 3
|
| /freebsd/crypto/openssl/test/recipes/ |
| H A D | 90-test_store_cases.t | 26 # The case of the garbage PKCS#12 DER file where a passphrase was 28 $stderr = 'garbage-pkcs12.stderr.txt'; 30 data_file('garbage-pkcs12.p12')], 32 "checking that storeutl fails when given a garbage pkcs12 file");
|
| /freebsd/contrib/kyua/cli/ |
| H A D | cmd_about_test.cpp | 65 " * garbage\n" in ATF_TEST_CASE_BODY() 70 " * garbage\n" in ATF_TEST_CASE_BODY() 85 ATF_REQUIRE(!atf::utils::grep_collection("garbage", ui.out_log())); in ATF_TEST_CASE_BODY() 92 ATF_REQUIRE(!atf::utils::grep_collection("garbage", ui.out_log())); in ATF_TEST_CASE_BODY() 140 " * garbage\n" in ATF_TEST_CASE_BODY() 145 " * garbage\n" in ATF_TEST_CASE_BODY() 157 ATF_REQUIRE(!atf::utils::grep_collection("garbage", ui.out_log())); in ATF_TEST_CASE_BODY() 164 ATF_REQUIRE(!atf::utils::grep_collection("garbage", ui.out_log())); in ATF_TEST_CASE_BODY()
|
| /freebsd/usr.bin/clang/llvm-dwarfutil/ |
| H A D | llvm-dwarfutil.1 | 52 .B \-\-garbage\-collection 54 When the linker does section garbage collection the abandoned debug info 77 .B \-\-no\-garbage\-collection 78 Disable \fI\%\-\-garbage\-collection\fP\&.
|
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | MarkLive.cpp | 12 // implemented as a mark-sweep garbage collector. 167 // garbage-collected. This function returns true if a given section is such 176 // SHT_NOTE sections in a group are subject to garbage collection. in isReserved() 214 // This is the main function of the garbage collector. 245 // that point to .eh_frames. Otherwise, the garbage collector would drop in run() 266 // whether they are garbage or not (e.g. there is usually no section in run() 273 // We are able to garbage collect them. in run() 276 // or --emit-reloc were given. And they are subject of garbage in run() 283 // - Group members (nextInSectionGroup != nullptr) are subject to garbage in run() 389 // Report garbage-collected sections. in markLive()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | GCStrategy.h | 1 //===- llvm/CodeGen/GCStrategy.h - Garbage collection -----------*- C++ -*-===// 21 // the Module that opts in to garbage collection. Specifically: 24 // Garbage collection is generally only possible at certain points in code. 36 // the target garbage collector runtime. 58 /// GCStrategy describes a garbage collector algorithm's code generation
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/ |
| H A D | vts_many_threads_bench.cpp | 4 // We'll call the 'M' threads as 'garbage threads'. 6 // 3) Join the garbage threads 58 // Wait for the main thread to join the garbage threads. in Thread() 105 printf("All threads started! Killing the garbage threads.\n"); in main()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | GCMetadata.h | 1 //===- GCMetadata.h - Garbage collector metadata ----------------*- C++ -*-===// 11 // garbage collectors. This interface allows code generators and garbage 65 /// GCRoot - Metadata for a pointer to an object managed by the garbage 76 /// Garbage collection metadata for a single function. Currently, this
|
| /freebsd/sys/contrib/openzfs/module/lua/ |
| H A D | lstate.h | 20 ** Some notes about garbage-collected objects: All objects in Lua must 28 ** Open upvalues are not subject to independent garbage collection. They 54 /* kinds of Garbage Collection */ 119 lu_mem GCestimate; /* an estimate of the non-garbage memory in use */ 124 lu_byte gcstate; /* state of garbage collector */
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/ |
| H A D | Options.td | 40 defm garbage_collection : BB<"garbage-collection", 41 "Do garbage collection for debug info(default)", 42 "Don`t do garbage collection for debug info">;
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
| H A D | ctzsi2.c | 23 x >>= t; // x = [0 - 0xFFFF] + higher garbage bits in __ctzsi2() 27 x >>= t; // x = [0 - 0xFF] + higher garbage bits in __ctzsi2() 31 x >>= t; // x = [0 - 0xF] + higher garbage bits in __ctzsi2()
|
| /freebsd/contrib/netbsd-tests/lib/libc/stdio/ |
| H A D | t_fopen.c | 132 ATF_REQUIRE(write(fd, "garbage", 7) == 7); in ATF_TC_BODY() 221 ATF_REQUIRE(fwrite("garbage", 1, 7, f) == 7); in ATF_TC_BODY() 226 ATF_REQUIRE(fwrite("garbage", 1, 7, f) == 7); in ATF_TC_BODY() 354 ATF_REQUIRE(fwrite("garbage", 1, 7, f) == 7); in ATF_TC_BODY() 408 ATF_REQUIRE(fwrite("garbage", 1, 7, f) == 7); in ATF_TC_BODY() 409 ATF_REQUIRE(fprintf(std[i], "garbage") == 7); in ATF_TC_BODY()
|
| /freebsd/crypto/openssl/crypto/property/ |
| H A D | README.md | 39 strings. Moreover, such a data structure need not be garbage collected. 88 without bounds and must garbage collect under-used entries. The garbage
|
| /freebsd/sys/vm/ |
| H A D | uma_dbg.c | 93 * Fills an item with predictable garbage 113 * Fills an item with predictable garbage 190 * Fills an item with predictable garbage 212 * Fills an item with predictable garbage
|
| /freebsd/sys/kern/ |
| H A D | sys_getrandom.c | 71 * rather than garbage. in kern_getrandom() 83 * If userspace can accept garbage, insecure non-random bytes, they can in kern_getrandom() 84 * create their own insecure garbage with srandom(time(NULL)) or in kern_getrandom()
|
| H A D | kern_fail.c | 110 * fp entries garbage list; outstanding entries are cleaned up in the 111 * garbage collector 117 MTX_SYSINIT(mtx_garbage_list, &mtx_garbage_list, "fail point garbage mtx", 205 /* Append fp setting to garbage list */ 212 /* Free up any zero-ref setting in the garbage queue */ 321 /* Append fp entries to fp garbage list */ 355 /* Free up any zero-ref entries in the garbage queue */ 773 * ref protects our new malloc'd stuff from being garbage collected in fail_point_set() 884 * Lock protects any new entries from being garbage collected before we in fail_point_sysctl() 941 * Lock protects any new entries from being garbage collected before we in fail_point_sysctl_status()
|
| /freebsd/contrib/kyua/engine/ |
| H A D | tap_parser_test.cpp | 202 "garbage line\n" in ATF_TEST_CASE_BODY() 220 "garbage line\n" in ATF_TEST_CASE_BODY() 275 "1..0 unrecognized # garbage skip\n"); in ATF_TEST_CASE_BODY() 299 "garbage line\n" in ATF_TEST_CASE_BODY() 349 "garbage line\n" in ATF_TEST_CASE_BODY()
|
| /freebsd/usr.bin/patch/ |
| H A D | patch.1 | 81 to patch must be determined for each diff listing, and that the garbage before 367 will try to skip any leading garbage, apply the diff, 368 and then skip any trailing garbage. 422 will try to figure out from the leading garbage what the name of the file 453 line in the leading garbage (regardless of the diff type), 494 Additionally, if the leading garbage contains a
|
| /freebsd/usr.sbin/ppp/ |
| H A D | deflate.c | 50 static char garbage[10]; variable 327 state->cx.next_out = garbage; in DeflateInput() 328 state->cx.avail_out = sizeof garbage; in DeflateInput() 374 state->cx.next_out = garbage; in DeflateDictSetup() 375 state->cx.avail_out = sizeof garbage; in DeflateDictSetup() 420 state->cx.next_out = garbage; in DeflateDictSetup() 421 state->cx.avail_out = sizeof garbage; in DeflateDictSetup()
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_history/ |
| H A D | zpool_history_001_neg.ksh | 37 # Verify 'zpool history' can deal with non-existent pools and garbage 60 "garbage to the command."
|
| /freebsd/share/mk/ |
| H A D | host-target.mk | 19 # uname -p may produce garbage on linux 32 # uname -m may produce garbage on darwin ppc
|