/freebsd/contrib/wpa/src/utils/ |
H A D | radiotap.c | 20 [IEEE80211_RADIOTAP_TSFT] = { .align = 8, .size = 8, }, 21 [IEEE80211_RADIOTAP_FLAGS] = { .align = 1, .size = 1, }, 22 [IEEE80211_RADIOTAP_RATE] = { .align = 1, .size = 1, }, 23 [IEEE80211_RADIOTAP_CHANNEL] = { .align = 2, .size = 4, }, 24 [IEEE80211_RADIOTAP_FHSS] = { .align = 2, .size = 2, }, 25 [IEEE80211_RADIOTAP_DBM_ANTSIGNAL] = { .align = 1, .size = 1, }, 26 [IEEE80211_RADIOTAP_DBM_ANTNOISE] = { .align = 1, .size = 1, }, 27 [IEEE80211_RADIOTAP_LOCK_QUALITY] = { .align = 2, .size = 2, }, 28 [IEEE80211_RADIOTAP_TX_ATTENUATION] = { .align = 2, .size = 2, }, 29 [IEEE80211_RADIOTAP_DB_TX_ATTENUATION] = { .align = 2, .size = 2, }, [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | wrappers_cpp.cpp | 1 //===-- wrappers_cpp.cpp -------- 24 operator new(size_t size) operator new() argument 27 operator new[](size_t size) operator new[]() argument 30 operator new(size_t size,std::nothrow_t const &) operator new() argument 34 operator new[](size_t size,std::nothrow_t const &) operator new[]() argument 38 operator new(size_t size,std::align_val_t align) operator new() argument 42 operator new[](size_t size,std::align_val_t align) operator new[]() argument 46 operator new(size_t size,std::align_val_t align,std::nothrow_t const &) operator new() argument 51 operator new[](size_t size,std::align_val_t align,std::nothrow_t const &) operator new[]() argument 71 operator delete(void * ptr,size_t size) operator delete() argument 74 operator delete[](void * ptr,size_t size) operator delete[]() argument 78 operator delete(void * ptr,std::align_val_t align) operator delete() argument 83 operator delete[](void * ptr,std::align_val_t align) operator delete[]() argument 87 operator delete(void * ptr,std::align_val_t align,std::nothrow_t const &) operator delete() argument 92 operator delete[](void * ptr,std::align_val_t align,std::nothrow_t const &) operator delete[]() argument 97 operator delete(void * ptr,size_t size,std::align_val_t align) operator delete() argument 98 operator delete(void * ptr,size_t size,std::align_val_t align) operator delete() argument 102 operator delete[](void * ptr,size_t size,std::align_val_t align) operator delete[]() argument 103 operator delete[](void * ptr,size_t size,std::align_val_t align) operator delete[]() argument [all...] |
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_new_delete.cpp | 1 //===-- tsan_new_delete.cpp ---------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 27 DECLARE_REAL(void *, malloc, uptr size) 33 return InternalAlloc(size); \ 36 SCOPED_INTERCEPTOR_RAW(mangled_name, size); \ 37 p = user_alloc(thr, pc, size); \ 40 ReportOutOfMemory(size, &stack); \ 43 invoke_malloc_hook(p, size); \ [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/stdlib/ |
H A D | t_posix_memalign.c | 3 /*- 37 #include <atf-c.h> 53 static const size_t size[] = { in ATF_TC_BODY() local 56 static const size_t align[] = { in ATF_TC_BODY() local 63 for (i = 0; i < __arraycount(size); i++) { in ATF_TC_BODY() 68 align[i], size[i]); in ATF_TC_BODY() 69 ret = posix_memalign(&p, align[i], size[i]); in ATF_TC_BODY() 71 if ( align[i] < sizeof(void *)) in ATF_TC_BODY() 77 ATF_REQUIRE_EQ_MSG(((intptr_t)p) & (align[i] - 1), 0, in ATF_TC_BODY() 92 static const size_t size[] = { in ATF_TC_BODY() local [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_new_delete.cpp | 1 //===-- memprof_interceptors.cpp -----------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 35 void *res = memprof_memalign(0, size, &stack, type); \ 37 ReportOutOfMemory(size, &stack); \ 41 void *res = memprof_memalign((uptr)align, size, &stack, type); \ 43 ReportOutOfMemory(size, &stack); \ 47 void *operator new(size_t size) { in operator new() argument 51 void *operator new[](size_t size) { in operator new[]() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineFrameInfo.cpp | 1 //===-- MachineFrameInfo.cpp ---------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 22 #include "llvm/Config/llvm-config.h" 31 void MachineFrameInfo::ensureMaxAlignment(Align Alignment) { in ensureMaxAlignment() 40 static inline Align clampStackAlignment(bool ShouldClamp, Align Alignment, in clampStackAlignment() 41 Align StackAlignment) { in clampStackAlignment() 51 int MachineFrameInfo::CreateStackObject(uint64_t Size, Align Alignment, in CreateStackObject() argument 55 assert(Size != 0 && "Cannot allocate zero size stack objects!"); in CreateStackObject() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_new_delete.cpp | 1 //===-- dfsan_new_delete.cpp ----------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 31 void *res = dfsan_malloc(size); \ 34 ReportOutOfMemory(size, &stack); \ 38 void *res = dfsan_memalign((uptr)align, size); \ 41 ReportOutOfMemory(size, &stack); \ 46 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new() argument 48 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new[]() argument [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_new_delete.cpp | 1 //===-- msan_new_delete.cpp -------- 45 operator new(size_t size) operator new() argument 47 operator new[](size_t size) operator new[]() argument 49 operator new(size_t size,std::nothrow_t const &) operator new() argument 53 operator new[](size_t size,std::nothrow_t const &) operator new[]() argument 57 operator new(size_t size,std::align_val_t align) operator new() argument 60 operator new[](size_t size,std::align_val_t align) operator new[]() argument 63 operator new(size_t size,std::align_val_t align,std::nothrow_t const &) operator new() argument 66 operator new[](size_t size,std::align_val_t align,std::nothrow_t const &) operator new[]() argument 84 operator delete(void * ptr,size_t size) operator delete() argument 86 operator delete[](void * ptr,size_t size) operator delete[]() argument 89 operator delete(void * ptr,std::align_val_t align) operator delete() argument 92 operator delete[](void * ptr,std::align_val_t align) operator delete[]() argument 95 operator delete(void * ptr,std::align_val_t align,std::nothrow_t const &) operator delete() argument 98 operator delete[](void * ptr,std::align_val_t align,std::nothrow_t const &) operator delete[]() argument 101 operator delete(void * ptr,size_t size,std::align_val_t align) operator delete() argument 104 operator delete[](void * ptr,size_t size,std::align_val_t align) operator delete[]() argument [all...] |
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Alignment.h | 1 //===-- llvm/Support/Alignment.h - Useful alignment functions ---*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 // - Align represents an alignment in bytes, it is always set and always a valid 16 // - MaybeAlign is an optional type, it may be undefined or set. When it's set 17 // you can get the underlying Align type by using the getValue() method. 19 //===----------------------------------------------------------------------===// 36 /// This struct is a compact representation of a valid (non-zero power of two) 39 struct Align { struct 45 friend unsigned Log2(Align); [all …]
|
H A D | Recycler.h | 1 //==- llvm/Support/Recycler.h - Recycling Allocator --------------*- C++ -*-==// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 24 /// PrintRecyclingAllocatorStats - Helper for RecyclingAllocator for 27 void PrintRecyclerStats(size_t Size, size_t Align, size_t FreeListSize); 29 /// Recycler - This class manages a linked-list of deallocated nodes 33 template <class T, size_t Size = sizeof(T), size_t Align = alignof(T)> 44 __asan_unpoison_memory_region(Val, Size); in pop_val() 45 FreeList = FreeList->Next; in pop_val() [all …]
|
/freebsd/sys/crypto/openssl/powerpc/ |
H A D | ppccpuid.S | 1 /* Do not modify. This file is auto-generated from ppccpuid.pl. */ 7 .align 4 13 .size OPENSSL_fpu_probe,.-OPENSSL_fpu_probe 16 .align 4 23 .size OPENSSL_ppc64_probe,.-OPENSSL_ppc64_probe 27 .align 4 33 .size OPENSSL_altivec_probe,.-OPENSSL_altivec_probe 37 .align 4 44 .size OPENSSL_crypto207_probe,.-OPENSSL_crypto207_probe 48 .align 4 [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMBasicBlockInfo.h | 1 //===-- ARMBasicBlockInfo.h - Basic Block Information -----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // Utility functions and data structure for computing block size. 11 //===----------------------------------------------------------------------===// 27 /// UnknownPadding - Return the worst case padding that could result from 33 inline unsigned UnknownPadding(Align Alignment, unsigned KnownBits) { in UnknownPadding() 35 return Alignment.value() - (1ull << KnownBits); in UnknownPadding() 39 /// BasicBlockInfo - Information about the offset and size of a single 42 /// Offset - Distance from the beginning of the function to the beginning [all …]
|
/freebsd/sys/crypto/openssl/powerpc64/ |
H A D | ppccpuid.S | 1 /* Do not modify. This file is auto-generated from ppccpuid.pl. */ 8 .align 4 16 .size OPENSSL_fpu_probe,.-OPENSSL_fpu_probe 19 .align 4 28 .size OPENSSL_ppc64_probe,.-OPENSSL_ppc64_probe 32 .align 4 40 .size OPENSSL_altivec_probe,.-OPENSSL_altivec_probe 44 .align 4 53 .size OPENSSL_crypto207_probe,.-OPENSSL_crypto207_probe 57 .align 4 [all …]
|
/freebsd/sys/crypto/openssl/powerpc64le/ |
H A D | ppccpuid.S | 1 /* Do not modify. This file is auto-generated from ppccpuid.pl. */ 8 .align 4 16 .size OPENSSL_fpu_probe,.-OPENSSL_fpu_probe 19 .align 4 28 .size OPENSSL_ppc64_probe,.-OPENSSL_ppc64_probe 32 .align 4 40 .size OPENSSL_altivec_probe,.-OPENSSL_altivec_probe 44 .align 4 53 .size OPENSSL_crypto207_probe,.-OPENSSL_crypto207_probe 57 .align 4 [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetCallingConv.td | 1 //===- TargetCallingConv.td - Target Calling Conventions ---*- tablegen -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file defines the target-independent interfaces with which targets 12 //===----------------------------------------------------------------------===// 17 /// CCCustom - Calls a custom arg handling function. 22 /// CCPredicateAction - Instances of this class check some predicate, then 28 /// CCIfType - If the current argument is one of the specified types, apply 34 /// CCIf - If the predicate matches, apply A. 39 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply [all …]
|
/freebsd/sys/crypto/openssl/i386/ |
H A D | x86cpuid.S | 1 /* Do not modify. This file is auto-generated from x86cpuid.pl. */ 6 .align 16 84 movl $-1,%esi 152 .size OPENSSL_ia32_cpuid,.-.L_OPENSSL_ia32_cpuid_begin 155 .align 16 168 leal OPENSSL_ia32cap_P-.L009PIC_me_up(%ecx),%ecx 174 .size OPENSSL_rdtsc,.-.L_OPENSSL_rdtsc_begin 177 .align 16 188 leal OPENSSL_ia32cap_P-.L011PIC_me_up(%ecx),%ecx 211 .size OPENSSL_instrument_halt,.-.L_OPENSSL_instrument_halt_begin [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
H A D | nsan_malloc_linux.cpp | 1 //===- nsan_malloc_linux.cpp ----------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 30 INTERCEPTOR(void *, aligned_alloc, uptr align, uptr size) { in INTERCEPTOR() argument 31 void *res = REAL(aligned_alloc)(align, size); in INTERCEPTOR() 33 __nsan_set_value_unknown(static_cast<u8 *>(res), size); in INTERCEPTOR() 37 INTERCEPTOR(void *, calloc, uptr nmemb, uptr size) { in INTERCEPTOR() argument 39 return DlsymAlloc::Callocate(nmemb, size); in INTERCEPTOR() 41 void *res = REAL(calloc)(nmemb, size); in INTERCEPTOR() [all …]
|
/freebsd/contrib/ntp/html/drivers/ |
H A D | driver39.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 6 <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> 12 …<h1><font face="Arial"><i><blink><font size="5">hopf</font></blink></i><font size="+2"> </font><fo… 14 <!-- #BeginDate format:En2m -->21-Oct-2010 23:44<!-- #EndDate --> 17 <div align="center"> 22 <h2><font size="+1">Synopsis</font></h2> 26 <div align="right"> 33 <div align="right"> 40 <div align="right"> 47 …<td align="center" valign="middle"><font face="Arial"><i><blink><font size="5"><img src="../pic/fg… [all …]
|
H A D | driver38.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 6 <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> 12 …<h1><font face="Arial"><i><blink><font size="5">hopf</font></blink></i><font size="+2"> </font><fo… 14 <!-- #BeginDate format:En2m -->21-Oct-2010 23:44<!-- #EndDate --> 17 <h2><font size="+1">Synopsis</font></h2> 24 <div align="right"> 31 <div align="right"> 38 <div align="right"> 45 <div align="right"> 52 <div align="right"> [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mtd/partitions/ |
H A D | partition.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 relative offset and size specified. Depending on partition function extra 16 Everything after 'partition-' will be used as the partition name to compare 26 - Rafał Miłecki <rafal@milecki.pl> 30 description: partition's offset and size within the flash 37 read-only: 39 should only be mounted read-only. This is usually used for flash 40 partitions containing early-boot firmware images or data which should [all …]
|
/freebsd/crypto/openssl/crypto/ |
H A D | ppccpuid.pl | 2 # Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved. 16 ( $xlate="${dir}ppc-xlate.pl" and -f $xlate ) or 17 ( $xlate="${dir}perlasm/ppc-xlate.pl" and -f $xlate) or 18 die "can't locate ppc-xlate.pl"; 38 .align 4 44 .size .OPENSSL_fpu_probe,.-.OPENSSL_fpu_probe 46 .align 4 53 .size .OPENSSL_ppc64_probe,.-.OPENSSL_ppc64_probe 56 .align 4 62 .size .OPENSSL_altivec_probe,.-..OPENSSL_altivec_probe [all …]
|
H A D | s390xcpuid.pl | 2 # Copyright 2009-2020 The OpenSSL Project Authors. All Rights Reserved. 35 .align 16 53 .size OPENSSL_s390x_facilities,.-OPENSSL_s390x_facilities 57 .align 16 89 tmhl %r2,0x4000 # check for message-security-assist 112 tmhh %r3,0x0008 # check for message-security-assist-3 119 tmhh %r3,0x0004 # check for message-security-assist-4 134 tml %r2,0x40 # check for message-security-assist-5 143 tmhl %r2,0x2000 # check for message-security-assist-8 150 tmhl %r2,0x0010 # check for message-security-assist-9 [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | emutls.c | 1 //===---------- emutls.c - Implements __emutls_get_address ---------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 18 // - Android versions older than M lack __cxa_thread_atexit_impl, so apps 20 // - Apps might use __thread/thread_local variables in pthread destructors. 22 // after the final malloc/free call to free its thread-specific data (see 31 // sized element in this array. Disable this for warn-as-error builds. 38 uintptr_t size; // number of elements in the 'data' array member 65 static __inline void *emutls_memalign_alloc(size_t align, size_t size) { in emutls_memalign_alloc() argument 68 if (posix_memalign(&base, align, size) != 0) in emutls_memalign_alloc() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DataLayout.h | 1 //===- llvm/DataLayout.h - Data size & alignment info -----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file defines layout properties related to datatype size/offset/alignment 17 //===----------------------------------------------------------------------===// 40 // This needs to be outside of the namespace, to avoid conflict with llvm-c 74 Align ABIAlign; 75 Align PrefAlign; 77 static LayoutAlignElem get(Align ABIAlign, Align PrefAlign, 90 Align ABIAlign; [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86SelectionDAGInfo.cpp | 1 //===-- X86SelectionDAGInfo.cpp - X86 SelectionDAG Info -------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 25 #define DEBUG_TYPE "x86-selectiondag-info" 28 UseFSRMForMemcpy("x86-use-fsrm-for-memcpy", cl::Hidden, cl::init(false), 33 // We cannot use TRI->hasBasePointer() until *after* we select all basic in isBaseRegConflictPossible() 44 return llvm::is_contained(ClobberSet, TRI->getBaseRegister()); in isBaseRegConflictPossible() 49 SDValue Size, Align Alignment, bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemset() argument 51 // If to a segment-relative address space, use the default lowering. in EmitTargetCodeForMemset() [all …]
|