Home
last modified time | relevance | path

Searched +full:align +full:- +full:size (Results 1 – 25 of 1056) sorted by relevance

12345678910>>...43

/freebsd-src/contrib/wpa/src/utils/
H A Dradiotap.c20 [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-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dwrappers_cpp.cpp1 //===-- wrappers_cpp.cpp ----------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
27 static void reportAllocation(void *ptr, size_t size) { in reportAllocation() argument
30 __scudo_allocate_hook(ptr, size); in reportAllocation()
38 INTERFACE WEAK void *operator new(size_t size) { in operator new() argument
39 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::New); in operator new()
40 reportAllocation(Ptr, size); in operator new()
43 INTERFACE WEAK void *operator new[](size_t size) { in operator new[]() argument
44 void *Ptr = Allocator.allocate(size, scudo::Chunk::Origin::NewArray); in operator new[]()
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_new_delete.cpp1 //===-- 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-src/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_posix_memalign.c3 /*-
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-src/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_new_delete.cpp1 //===-- 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-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFrameInfo.cpp1 //===-- MachineFrameInfo.cpp --------
51 CreateStackObject(uint64_t Size,Align Alignment,bool IsSpillSlot,const AllocaInst * Alloca,uint8_t StackID) CreateStackObject() argument
66 CreateSpillStackObject(uint64_t Size,Align Alignment) CreateSpillStackObject() argument
83 CreateFixedObject(uint64_t Size,int64_t SPOffset,bool IsImmutable,bool IsAliased) CreateFixedObject() argument
102 CreateFixedSpillStackObject(uint64_t Size,int64_t SPOffset,bool IsImmutable) CreateFixedSpillStackObject() argument
199 unsigned Size = TII.getFrameSize(MI); computeMaxCallFrameSize() local
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_new_delete.cpp1 //===-- 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-src/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_new_delete.cpp1 //===-- msan_new_delete.cpp -----------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
35 void *res = msan_malloc(size, &stack); \
38 ReportOutOfMemory(size, &stack); \
43 void *res = msan_memalign((uptr)align, size, &stack); \
46 ReportOutOfMemory(size, &stack); \
51 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new() argument
53 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new[]() argument
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_new_delete.cpp1 //===-- asan_interceptors.cpp ---------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
23 // anyway by passing extra -export flags to the linker, which is exactly that
61 // For local pool allocation, align to SHADOW_GRANULARITY to match asan
65 void *res = asan_memalign(0, size, &stack, type); \
67 ReportOutOfMemory(size, &stack); \
71 void *res = asan_memalign((uptr)align, size, &stack, type); \
73 ReportOutOfMemory(size, &stack); \
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/
H A DAlignment.h1 //===-- 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 DRecycler.h1 //==- 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-src/sys/crypto/openssl/powerpc/
H A Dppccpuid.S1 /* 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-src/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBasicBlockInfo.h1 //===-- 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-src/sys/crypto/openssl/powerpc64/
H A Dppccpuid.S1 /* 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-src/sys/crypto/openssl/powerpc64le/
H A Dppccpuid.S1 /* 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-src/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetCallingConv.td1 //===- 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-src/contrib/ntp/html/drivers/
H A Ddriver39.html1 <!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 Ddriver38.html1 <!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-src/sys/crypto/openssl/i386/
H A Dx86cpuid.S1 /* 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-src/crypto/openssl/crypto/
H A Dppccpuid.pl2 # 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 Ds390xcpuid.pl2 # 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-src/contrib/llvm-project/compiler-rt/lib/builtins/
H A Demutls.c1 //===---------- 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-src/contrib/llvm-project/llvm/include/llvm/IR/
H A DDataLayout.h1 //===- llvm/DataLayout.h - Data size & alignment info -------
[all...]
/freebsd-src/tools/regression/tls/ttls3/
H A Delftls.S1 /*-
35 .align 4
37 .size __gl_tls_var0, 4
42 .align 4
44 .size __gl_tls_var1, 4
49 .align 4
51 .size __gl_tls_var2, 4
56 .align 4
58 .size __gl_tls_var3, 4
63 .align 4
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp1 //===-- X86SelectionDAGInfo.cpp - X86 SelectionDAG Info -------
49 EmitTargetCodeForMemset(SelectionDAG & DAG,const SDLoc & dl,SDValue Chain,SDValue Dst,SDValue Val,SDValue Size,Align Alignment,bool isVolatile,bool AlwaysInline,MachinePointerInfo DstPtrInfo) const EmitTargetCodeForMemset() argument
156 emitRepmovs(const X86Subtarget & Subtarget,SelectionDAG & DAG,const SDLoc & dl,SDValue Chain,SDValue Dst,SDValue Src,SDValue Size,MVT AVT) emitRepmovs() argument
178 emitRepmovsB(const X86Subtarget & Subtarget,SelectionDAG & DAG,const SDLoc & dl,SDValue Chain,SDValue Dst,SDValue Src,uint64_t Size) emitRepmovsB() argument
186 uint64_t Align = Alignment.value(); getOptimalRepmovsType() local
207 emitConstantSizeRepmov(SelectionDAG & DAG,const X86Subtarget & Subtarget,const SDLoc & dl,SDValue Chain,SDValue Dst,SDValue Src,uint64_t Size,EVT SizeVT,Align Alignment,bool isVolatile,bool AlwaysInline,MachinePointerInfo DstPtrInfo,MachinePointerInfo SrcPtrInfo) emitConstantSizeRepmov() argument
263 EmitTargetCodeForMemcpy(SelectionDAG & DAG,const SDLoc & dl,SDValue Chain,SDValue Dst,SDValue Src,SDValue Size,Align Alignment,bool isVolatile,bool AlwaysInline,MachinePointerInfo DstPtrInfo,MachinePointerInfo SrcPtrInfo) const EmitTargetCodeForMemcpy() argument
[all...]

12345678910>>...43