| /freebsd-12.1/sys/dev/hwpmc/ |
| H A D | hwpmc_powerpc.c | 63 int frames = 0; in pmc_save_kernel_callchain() local 65 cc[frames++] = PMC_TRAPFRAME_TO_PC(tf); in pmc_save_kernel_callchain() 69 for (; frames < maxsamples; frames++) { in pmc_save_kernel_callchain() 88 cc[frames] = pc; in pmc_save_kernel_callchain() 92 return (frames); in pmc_save_kernel_callchain() 212 int frames = 0; in pmc_save_user_callchain() local 214 cc[frames++] = PMC_TRAPFRAME_TO_PC(tf); in pmc_save_user_callchain() 218 for (; frames < maxsamples; frames++) { in pmc_save_user_callchain() 228 cc[frames] = fuword(sp + 2); in pmc_save_user_callchain() 232 cc[frames] = fuword32((uint32_t *)sp + 1); in pmc_save_user_callchain() [all …]
|
| H A D | hwpmc_mips.c | 753 int frames = 0; in pmc_save_kernel_callchain() local 759 cc[frames++] = pc; in pmc_save_kernel_callchain() 766 if (frames >= nframes) in pmc_save_kernel_callchain() 772 cc[frames++] = pc; in pmc_save_kernel_callchain() 776 return (frames); in pmc_save_kernel_callchain() 784 int frames = 0; in pmc_save_user_callchain() local 790 cc[frames++] = pc; in pmc_save_user_callchain() 798 if (frames >= nframes) in pmc_save_user_callchain() 804 cc[frames++] = pc; in pmc_save_user_callchain() 808 return (frames); in pmc_save_user_callchain()
|
| /freebsd-12.1/usr.sbin/bsnmpd/modules/snmp_wlan/ |
| H A D | BEGEMOT-WIRELESS-MIB.txt | 730 UNITS "frames" 1814 UNITS "frames" 1823 UNITS "frames" 1832 UNITS "frames" 1841 UNITS "frames" 1850 UNITS "frames" 1860 UNITS "frames" 1870 UNITS "frames" 1880 UNITS "frames" 1890 UNITS "frames" [all …]
|
| /freebsd-12.1/sys/contrib/zstd/contrib/seekable_format/ |
| H A D | zstd_seekable_compression_format.md | 21 This is done by splitting up the input data into frames, 34 The format consists of a number of frames (Zstandard compressed frames and skippable frames), follo… 46 This is for compatibility with [Zstandard skippable frames]. 47 Since it is legal for other Zstandard skippable frames to use the same 48 magic number, it is not recommended for a decoder to recognize frames 54 This is for compatibility with [Zstandard skippable frames]. 56 [Zstandard skippable frames]: https://github.com/facebook/zstd/blob/master/doc/zstd_compression_for… 73 The number of stored frames in the data. 105 The cumulative sum of the `Compressed_Size` fields of frames `0` to `i` gives the offset in the com… 109 The size of the decompressed data contained in the frame. For skippable or otherwise empty frames,…
|
| /freebsd-12.1/contrib/netbsd-tests/lib/libexecinfo/ |
| H A D | t_backtrace.c | 58 } frames[] = { in myfunc3() local 75 for (j = 0; j < __arraycount(frames); ++j) { in myfunc3() 76 if (!frames[j].is_optional) in myfunc3() 102 if (frames[i].is_optional && in myfunc3() 103 strcmp(strings[j], frames[i].name)) { in myfunc3() 107 ATF_CHECK_STREQ(strings[j], frames[i].name); in myfunc3()
|
| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_suppressions.cc | 85 SymbolizedStack *frames = symbolizer->SymbolizePC(addr); in IsStackTraceSuppressed() local 86 CHECK(frames); in IsStackTraceSuppressed() 87 for (SymbolizedStack *cur = frames; cur; cur = cur->next) { in IsStackTraceSuppressed() 95 frames->ClearAll(); in IsStackTraceSuppressed() 99 frames->ClearAll(); in IsStackTraceSuppressed()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | SharingPtr.cpp | 45 void *frames[1024]; in GetFrames() local 46 const int count = ::backtrace(frames, llvm::array_lengthof(frames)); in GetFrames() 48 m_frames.assign(frames + 2, frames + (count - 2)); in GetFrames()
|
| /freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_report.cc | 23 ReportStack::ReportStack() : frames(nullptr), suppressable(false) {} in ReportStack() 125 if (ent == 0 || ent->frames == 0) { in PrintStack() 129 SymbolizedStack *frame = ent->frames; in PrintStack() 311 static SymbolizedStack *SkipTsanInternalFrames(SymbolizedStack *frames) { in SkipTsanInternalFrames() argument 312 while (FrameIsInternal(frames) && frames->next) in SkipTsanInternalFrames() 313 frames = frames->next; in SkipTsanInternalFrames() 314 return frames; in SkipTsanInternalFrames() 385 if (SymbolizedStack *frame = SkipTsanInternalFrames(stack->frames)) in PrintReport() 399 if (ent == 0 || ent->frames == 0) { in PrintStack() 403 SymbolizedStack *frame = ent->frames; in PrintStack()
|
| H A D | tsan_debugging.cc | 87 if (rep->sleep) CopyTrace(rep->sleep->frames, sleep_trace, trace_size); in __tsan_get_report_data() 104 if (stack) CopyTrace(stack->frames, trace, trace_size); in __tsan_get_report_stack() 120 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop() 139 if (loc->stack) CopyTrace(loc->stack->frames, trace, trace_size); in __tsan_get_report_loc() 162 if (mutex->stack) CopyTrace(mutex->stack->frames, trace, trace_size); in __tsan_get_report_mutex() 178 if (thread->stack) CopyTrace(thread->stack->frames, trace, trace_size); in __tsan_get_report_thread()
|
| H A D | tsan_suppressions.cc | 115 for (const SymbolizedStack *frame = stack->frames; frame; in IsSuppressed() 121 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr) in IsSuppressed() 122 return IsSuppressed(kSuppressionRaceTop, stack->frames->info, sp); in IsSuppressed()
|
| /freebsd-12.1/share/examples/bootforth/ |
| H A D | frames.4th | 5 marker task-frames.4th 15 \ Single frames 22 \ Double frames 43 : f_single ( -- ) \ set frames to single 52 : f_double ( -- ) \ set frames to double
|
| H A D | boot.4th | 13 cr .( - frames.4th...) 14 s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
|
| H A D | loader.rc | 19 cr .( - frames.4th...) 20 s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
|
| /freebsd-12.1/stand/forth/ |
| H A D | frames.4th | 28 marker task-frames.4th 43 \ ASCII frames (used when serial console is detected) 49 \ Single frames 56 \ Double frames 79 : f_ascii ( -- ) ( -- ) \ set frames to ascii 88 : f_single ( -- ) \ set frames to single 98 : f_double ( -- ) \ set frames to double
|
| /freebsd-12.1/crypto/heimdal/lib/krb5/ |
| H A D | misc.c | 102 int i, frames = backtrace(stack, sizeof(stack) / sizeof(stack[0])); in _krb5_debug_backtrace() local 103 if (frames > 0) in _krb5_debug_backtrace() 104 strs = backtrace_symbols(stack, frames); in _krb5_debug_backtrace() 106 for (i = 0; i < frames; i++) in _krb5_debug_backtrace()
|
| /freebsd-12.1/usr.sbin/fwcontrol/ |
| H A D | fwdv.c | 264 int len, tlen, header, fd, frames, packets, vec, offset, nhdr, i; in dvsend() local 322 frames = 0; in dvsend() 359 fprintf(stderr, "%d", frames % 10); in dvsend() 360 frames ++; in dvsend() 361 if (count > 0 && frames > count) in dvsend() 363 if (frames % frame_rate[system] == 0) in dvsend() 418 frames, rtime, frames/rtime); in dvsend()
|
| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stacktrace_libcdep.cc | 35 SymbolizedStack *frames = Symbolizer::GetOrInit()->SymbolizePC(pc); in Print() local 36 CHECK(frames); in Print() 37 for (SymbolizedStack *cur = frames; cur; cur = cur->next) { in Print() 50 frames->ClearAll(); in Print()
|
| H A D | sanitizer_unwind_linux_libcdep.cc | 152 InternalMmapVector<backtrace_frame_t> frames(kStackTraceMax); in SlowUnwindStackWithContext() local 155 frames.data(), in SlowUnwindStackWithContext() 165 trace_buffer[size++] = frames[i].absolute_pc + 2; in SlowUnwindStackWithContext()
|
| /freebsd-12.1/contrib/wpa/hostapd/ |
| H A D | README | 117 IEEE 802.1X uses Extensible Authentication Protocol (EAP). The frames 125 frames used by that server. RADIUS is suitable for this, but IEEE 129 is a relatively simple mechanism for denying normal frames going to 131 frames to be passed between the Supplicant and the Authenticator even 135 receives 802.1X (EAPOL) frames from the Supplicant using the wlan#ap 136 device that is also used with IEEE 802.11 management frames. The 137 frames to the Supplicant are sent using the same device. 143 relays the frames between the Supplicant and the Authentication 153 Unauthorized state and only IEEE 802.1X frames are accepted at this 156 the virtual port is set to Authorized state and frames from and to the [all …]
|
| H A D | README-MULTI-AP | 52 must use 4-address mode for all frames sent over this link ([3], section 14). 68 only be used for frames sent to a backhaul STA, not to a normal STA. Also, 69 frames sent to a backhaul STA must use 4-address mode, while frames sent to a 104 6. STA and AP both use 4-address mode for Data frames. 143 1. Fronthaul BSS Beacon frames advertise WPS support (nothing Multi-AP
|
| /freebsd-12.1/tools/tools/net80211/wlaninject/ |
| H A D | README | 3 This tool generates raw 802.11 frames. The resulting frame will 22 -N Mark transmitted frames such that no ACK is expected. In practice, 61 This is mainly used for management frames. For data frames, -b
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | flif | 20 >>5 ubyte <255 \b, %i frames 26 >>>6 beshort x \b, %i frames,
|
| /freebsd-12.1/sys/contrib/zstd/tests/ |
| H A D | README.md | 13 - `legacy` : Test tool to test decoding of legacy zstd frames 14 - `decodecorpus` : Tool to generate valid Zstandard frames, for verifying decoder implementations 70 #### `decodecorpus` - tool to generate Zstandard frames for decoder testing 89 generate random test frames and ensure that the
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | collect2.c | 1775 int frames = (frame_tables.number > 0); in write_c_file_stat() local 1825 if (frames) in write_c_file_stat() 1857 if (constructors.number > 0 || frames) in write_c_file_stat() 1861 if (frames) in write_c_file_stat() 1874 if (destructors.number > 0 || frames) in write_c_file_stat() 1878 if (frames) in write_c_file_stat() 1885 destructors.number + frames); in write_c_file_stat() 1904 int frames = (frame_tables.number > 0); in write_c_file_glob() local 1910 if (frames) in write_c_file_glob() 1944 if (frames) in write_c_file_glob() [all …]
|
| /freebsd-12.1/sys/contrib/zstd/doc/ |
| H A D | README.md | 23 …m/facebook/zstd/tree/dev/tests#decodecorpus---tool-to-generate-zstandard-frames-for-decoder-testin… 24 This tool, stored in `/tests` directory, is able to generate random valid frames,
|