| /freebsd-12-stable/sys/dev/hwpmc/ |
| 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() 225 cc[frames] = fuword32((uint32_t *)sp + 1); in pmc_save_user_callchain() 228 cc[frames] = fuword(sp + 2); in pmc_save_user_callchain() [all …]
|
| 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-stable/usr.sbin/bsnmpd/modules/snmp_wlan/ |
| D | BEGEMOT-WIRELESS-MIB.txt | 73 management frames to indicate why an action took place." 113 mesh routing management frames to indicate why an 135 management frames to indicate what the result of an 658 frames. Accepted values are in units of one tenths of a dBm in 669 transmitted frames are broken into fragments. Setting the value 681 transmitted frames are preceded by transmission of an RTS 683 disable transmission of RTS frames." 730 UNITS "frames" 824 frames are sent when an interface is operating in ad-hoc or ap 835 buffered multicast data frames are transmitted by an interface [all …]
|
| /freebsd-12-stable/sys/contrib/zstd/contrib/seekable_format/ |
| 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-stable/contrib/netbsd-tests/lib/libexecinfo/ |
| 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-stable/contrib/llvm-project/compiler-rt/lib/asan/ |
| D | asan_suppressions.cpp | 84 SymbolizedStack *frames = symbolizer->SymbolizePC(addr); in IsStackTraceSuppressed() local 85 CHECK(frames); in IsStackTraceSuppressed() 86 for (SymbolizedStack *cur = frames; cur; cur = cur->next) { in IsStackTraceSuppressed() 94 frames->ClearAll(); in IsStackTraceSuppressed() 98 frames->ClearAll(); in IsStackTraceSuppressed()
|
| /freebsd-12-stable/share/examples/bootforth/ |
| D | frames.4th | 3 \ $FreeBSD: stable/12/share/examples/bootforth/frames.4th 312910 2017-01-28 02:22:15Z nyan $ 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
|
| D | boot.4th | 13 cr .( - frames.4th...) 14 s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
|
| D | loader.rc | 19 cr .( - frames.4th...) 20 s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
|
| /freebsd-12-stable/stand/forth/ |
| D | frames.4th | 26 \ $FreeBSD: stable/12/stand/forth/frames.4th 312910 2017-01-28 02:22:15Z nyan $ 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-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| D | tsan_report.cpp | 22 ReportStack::ReportStack() : frames(nullptr), suppressable(false) {} in ReportStack() 124 if (ent == 0 || ent->frames == 0) { in PrintStack() 128 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() 400 if (ent == 0 || ent->frames == 0) { in PrintStack() 404 SymbolizedStack *frame = ent->frames; in PrintStack()
|
| D | tsan_debugging.cpp | 86 if (rep->sleep) CopyTrace(rep->sleep->frames, sleep_trace, trace_size); in __tsan_get_report_data() 103 if (stack) CopyTrace(stack->frames, trace, trace_size); in __tsan_get_report_stack() 119 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop() 138 if (loc->stack) CopyTrace(loc->stack->frames, trace, trace_size); in __tsan_get_report_loc() 161 if (mutex->stack) CopyTrace(mutex->stack->frames, trace, trace_size); in __tsan_get_report_mutex() 177 if (thread->stack) CopyTrace(thread->stack->frames, trace, trace_size); in __tsan_get_report_thread()
|
| D | tsan_suppressions.cpp | 114 for (const SymbolizedStack *frame = stack->frames; frame; in IsSuppressed() 120 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr) in IsSuppressed() 121 return IsSuppressed(kSuppressionRaceTop, stack->frames->info, sp); in IsSuppressed()
|
| /freebsd-12-stable/crypto/heimdal/lib/krb5/ |
| 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-stable/usr.sbin/fwcontrol/ |
| 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-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_stacktrace_libcdep.cpp | 35 SymbolizedStack *frames = symbolize_ in ProcessAddressFrames() local 38 if (!frames) in ProcessAddressFrames() 41 for (SymbolizedStack *cur = frames; cur; cur = cur->next) { in ProcessAddressFrames() 53 frames->ClearAll(); in ProcessAddressFrames()
|
| D | sanitizer_unwind_linux_libcdep.cpp | 161 InternalMmapVector<backtrace_frame_t> frames(kStackTraceMax); in UnwindSlow() local 164 frames.data(), in UnwindSlow() 174 trace_buffer[size++] = frames[i].absolute_pc + 2; in UnwindSlow()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/ |
| D | SBThread.i | 441 frames = [] 443 frames.append(frame) 444 return frames 451 …frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of ll…
|
| /freebsd-12-stable/contrib/wpa/hostapd/ |
| D | README | 117 IEEE 802.1X uses Extensible Authentication Protocol (EAP). The frames 119 (EAPOL) and the Authenticator relays these frames to the Authentication 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 [all …]
|
| 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-stable/tools/tools/net80211/wlaninject/ |
| 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-stable/contrib/file/magic/Magdir/ |
| D | flif | 20 >>5 ubyte <255 \b, %i frames 26 >>>6 beshort x \b, %i frames,
|
| /freebsd-12-stable/sys/contrib/zstd/tests/ |
| 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-stable/contrib/gcc/ |
| 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() 1866 fprintf (stream, "\tp = ctors + %d;\n", constructors.number + 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() [all …]
|
| /freebsd-12-stable/sys/contrib/zstd/doc/ |
| 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,
|