/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SafeStackLayout.h | 1 //===- SafeStackLayout.h - SafeStack frame layout -------- 29 unsigned End; global() member [all...] |
/freebsd-src/contrib/llvm-project/clang/lib/Format/ |
H A D | WhitespaceManager.h | 1 //===--- WhitespaceManager.h - Format C++ code ------ 280 getNetWidth(const I & Start,const I & End,unsigned InitialSpaces) getNetWidth() argument 324 auto End = Start + Offset; getMaximumNetWidth() local [all...] |
/freebsd-src/contrib/ntp/scripts/ |
H A D | summary.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt… 3 <!-- Created by GNU Texinfo 6.6, http://www.gnu.org/software/texinfo/ --> 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 10 <meta name="resource-type" content="document"> 16 <!-- 17 a.summary-letter {text-decoration: none} 18 blockquote.indentedblock {margin-right: 0em} 19 div.display {margin-left: 3.2em} 20 div.example {margin-left: 3.2em} 21 div.lisp {margin-left: 3.2em} [all …]
|
/freebsd-src/crypto/openssl/doc/man7/ |
H A D | life_cycle-kdf.pod | 5 life_cycle-kdf - The KDF algorithm life-cycle 10 go through a number of stages in their life-cycle: 17 starting state for any life-cycle transitions. 31 for all life-cycle transitions. 37 The usual life-cycle of a KDF/PRF is illustrated: 41 +-------------------+ 43 +-------------------+ 47 +-------------------+ 49 +-------------------+ | 53 EVP_KDF_derive +-------------------+ | [all …]
|
H A D | life_cycle-rand.pod | 5 life_cycle-rand - The RAND algorithm life-cycle 10 go through a number of stages in their life-cycle: 17 starting state for any life-cycle transitions. 37 for all life-cycle transitions. 43 The usual life-cycle of a RAND is illustrated: 47 +-------------------------+ 49 +-------------------------+ 53 +-------------------------+ 55 +-------------------------+ 59 EVP_RAND_generate +-------------------------+ [all …]
|
H A D | life_cycle-mac.pod | 5 life_cycle-mac - The MAC algorithm life-cycle 10 go through a number of stages in their life-cycle: 17 starting state for any life-cycle transitions. 40 for all life-cycle transitions. 46 The usual life-cycle of a MAC is illustrated: 50 +-------------------+ 52 +-------------------+ 56 +-------------------+ 58 +-------------------+ 62 +-------------------+ [all …]
|
H A D | life_cycle-digest.pod | 5 life_cycle-digest - The digest algorithm life-cycle 9 All message digests (MDs) go through a number of stages in their life-cycle: 16 starting state for any life-cycle transitions. 39 for all life-cycle transitions. 45 The usual life-cycle of a MD is illustrated: 49 +-------------------+ 51 +-------------------+ 55 +-------------------+ EVP_MD_CTX_reset 56 | newed | <------------------------------+ 57 +-------------------+ | [all …]
|
H A D | life_cycle-cipher.pod | 5 life_cycle-cipher - The cipher algorithm life-cycle 10 life-cycle: 17 starting state for any life-cycle transitions. 52 for all life-cycle transitions. 58 The usual life-cycle of a CIPHER is illustrated: 62 +---------------------------+ 66 +---------------------------+ + - - - - - - - - - - - - - + 70 +---------------------------+ + - - - - - - - - - - - - - + 73 | | <----+ 74 +---------------------------+ [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/IR/ |
H A D | DataLayout.cpp | 1 //===- DataLayout.cpp - Data size & alignment routines -------- 810 const Align Align = getAlignment() local [all...] |
/freebsd-src/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 //===----------------------------------------------------------------------===// 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 53 /// Size - Size of the basic block in bytes. If the block contains [all …]
|
H A D | ARMBasicBlockInfo.cpp | 1 //===--- ARMBasicBlockInfo.cpp - Utilities for block sizes ---------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 20 #define DEBUG_TYPE "arm-bb-utils" 26 // mayOptimizeThumb2Instruction - Returns true if optimizeThumb2Instructions 30 switch(MI->getOpcode()) { in mayOptimizeThumb2Instruction() 47 LLVM_DEBUG(dbgs() << "computeBlockSize: " << MBB->getName() << "\n"); in computeBlockSize() 48 BasicBlockInfo &BBI = BBInfo[MBB->getNumber()]; in computeBlockSize() 51 BBI.PostAlign = Align(1); in computeBlockSize() 54 BBI.Size += TII->getInstSizeInBytes(I); in computeBlockSize() [all …]
|
/freebsd-src/contrib/llvm-project/libcxx/src/ |
H A D | memory_resource.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 32 static bool is_aligned_to(void* ptr, size_t align) { in is_aligned_to() argument 35 void* result = std::align(align, 1, p2, space); in is_aligned_to() 41 void* do_allocate(size_t bytes, size_t align) override { in do_allocate() argument 43 return std::__libcpp_allocate(bytes, align); in do_allocate() 47 void* result = std::__libcpp_allocate(bytes, align); in do_allocate() 48 if (!is_aligned_to(result, align)) { in do_allocate() 49 std::__libcpp_deallocate(result, bytes, align); in do_allocate() [all …]
|
/freebsd-src/stand/kboot/kboot/arch/powerpc64/ |
H A D | load_addr.c | 1 /*- 2 * Copyright (C) 2010-2014 Nathan Whitehorn 35 uint64_t end; member 42 * And 0..end of kernel 61 uint64_t start, end; in kboot_get_phys_load_segment() local 69 fd = host_open("/proc/device-tree/reserved-ranges", O_RDONLY, 0); in kboot_get_phys_load_segment() 73 rsvd_reg[rsvd_reg_cnt].end = in kboot_get_phys_load_segment() 74 be64toh(entry[1]) + rsvd_reg[rsvd_reg_cnt].start - 1; in kboot_get_phys_load_segment() 80 fd = host_open("/proc/device-tree/chosen/linux,kernel-end", O_RDONLY, 0); in kboot_get_phys_load_segment() 86 rsvd_reg[rsvd_reg_cnt].end = be64toh(val_64) - 1; in kboot_get_phys_load_segment() [all …]
|
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_coverage_win_sections.cpp | 1 //===-- sanitizer_coverage_win_sections.cpp -------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 // arrays. According to https://msdn.microsoft.com/en-us/library/7977wcck.aspx 18 // section (using the letter A after "$"). We do the same to get the end of the 19 // data by using the letter "Z" after "$" to make the end variable come after 24 //===----------------------------------------------------------------------===// 32 // align the start of the 8-bit counters array. The array will always start 8 37 // Even though we said not to align __stop__sancov_cntrs (using the "align" 38 // declspec), MSVC's linker may try to align the section, .SCOV$CZ, containing [all …]
|
H A D | sanitizer_common_libcdep.cpp | 1 //===-- sanitizer_common_libcdep.cpp -------- 148 InitAligned(uptr size,uptr align,const char * name) InitAligned() argument 162 ReserveShadowMemoryRange(uptr beg,uptr end,const char * name,bool madvise_shadow) ReserveShadowMemoryRange() argument [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | EPCGenericRTDyldMemoryManager.h | 1 //===---- EPCGenericRTDyldMemoryManager.h - EPC-based MemMgr ----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 25 /// Remote-mapped RuntimeDyld-compatible memory manager. 63 void reserveAllocationSpace(uintptr_t CodeSize, Align CodeAlign, 64 uintptr_t RODataSize, Align RODataAlign, 65 uintptr_t RWDataSize, Align RWDataAlign) override; 81 SectionAlloc(uint64_t Size, unsigned Align) in SectionAlloc() 82 : Size(Size), Align(Align), in SectionAlloc() [all …]
|
/freebsd-src/stand/kboot/kboot/arch/amd64/ |
H A D | load_addr.c | 1 /*- 55 { acpi_nv_storage, "ACPI Non-volatile Storage" }, 72 while (kv->name != NULL) { in str2type() 73 if (strcmp(kv->name, buf) == 0) { in str2type() 74 *value = kv->type; in str2type() 94 snprintf(name, sizeof(name), "%s/%d/end", MEMMAP, n); in enumerate_memory_arch() 95 if (!file2u64(name, &segs[n].end)) in enumerate_memory_arch() 111 #define SZ(s) (((s).end - (s).start) + 1) 114 find_ram(struct memory_segments *segs, int nr_seg, uint64_t minpa, uint64_t align, in find_ram() argument 119 printf("minpa %#jx align %#jx sz %#jx maxpa %#jx\n", in find_ram() [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | MachOUniversalWriter.h | 1 //===- MachOUniversalWriter.h - MachO universal binary writer----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 46 std::string ArchName, uint32_t Align); 51 Slice(const MachOObjectFile &O, uint32_t Align); 53 /// This constructor takes pre-specified \param CPUType , \param CPUSubType , 54 /// \param ArchName , \param Align instead of inferring them from the archive 57 std::string ArchName, uint32_t Align); 62 static Expected<Slice> create(const IRObjectFile &IRO, uint32_t Align); [all …]
|
/freebsd-src/contrib/sendmail/libmilter/docs/ |
H A D | smfi_setsymlist.html | 4 <!-- 5 $Id: smfi_setsymlist.html,v 1.7 2013-11-22 20:51:39 ca Exp $ 6 --> 10 <!---------- Synopsis -----------> 11 <TR><TH valign="top" align=left width=100>SYNOPSIS</TH><TD> 24 <!----------- Description ----------> 25 <TR><TH valign="top" align=left>DESCRIPTION</TH><TD> 27 <TR align="left" valign=top> 33 <TR align="left" valign=top> 42 <!----------- Arguments ----------> [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCELFStreamer.h | 1 //===- MCELFStreamer.h - MCStreamer ELF Object File Interface ---*- C++ -*-===// 5 // SPDX-License-Identifie [all...] |
H A D | MCSection.h | 1 //===- MCSection.h - Machine Code Sections -------- [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | EPCGenericRTDyldMemoryManager.cpp | 1 //===----- EPCGenericRTDyldMemoryManager.cpp - EPC-bbasde MemMgr -----===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 74 alignAddr(Seg.back().Contents.get(), Align(Alignment))); in allocateCodeSection() 83 << (IsReadOnly ? "ro" : "rw") << "-data section " << SectionName in allocateDataSection() 93 alignAddr(Seg.back().Contents.get(), Align(Alignment))); in allocateDataSection() 97 uintptr_t CodeSize, Align CodeAlign, uintptr_t RODataSize, in reserveAllocationSpace() 98 Align RODataAlign, uintptr_t RWDataSize, Align RWDataAlign) { in reserveAllocationSpace() 111 ErrMsg = "Invalid ro-data alignment in reserveAllocationSpace"; in reserveAllocationSpace() 115 ErrMsg = "Invalid rw-data alignment in reserveAllocationSpace"; in reserveAllocationSpace() [all …]
|
/freebsd-src/crypto/openssl/crypto/aes/asm/ |
H A D | aesfx-sparcv9.pl | 2 # Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved. 20 # required key setup and single-block procedures. 24 # Add "teaser" CBC and CTR mode-specific subroutines. "Teaser" means 27 # get processing one byte in 4.1 cycles with 128-bit key on SPARC64 X. 33 # instructions and improve single-block and short-input performance 52 .align 32 62 add %o7, .Linp_align-1b, %o7 125 .align 16 139 .size aes_fx_encrypt,.-aes_fx_encrypt 142 .align 32 [all …]
|
/freebsd-src/sys/libkern/x86/ |
H A D | crc32_sse42.c | 6 * This software is provided 'as-is', without any express or implied warranty. 43 * clang (at least 3.9.[0-1]) pessimizes "rm" (y) and "m" (y) in _mm_crc32_u8() 69 /* CRC-32C (iSCSI) polynomial in reversed bit order. */ 73 * Block sizes for three-way parallel crc computation. LONG and SHORT must 133 uint32_t odd[32]; /* odd-power-of-two zeros operator */ in crc32c_zeros_op() 138 odd[0] = POLY; /* CRC-32C polynomial */ in crc32c_zeros_op() 153 * bits), in even -- next square puts operator for two zero bytes in in crc32c_zeros_op() 165 /* answer ended up in odd -- copy to even */ in crc32c_zeros_op() 172 * for that length, byte-by-byte on the operand. 214 /* Compute CRC-32C using the Intel hardware instruction. */ [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86WinCOFFTargetStreamer.cpp | 1 //===-- X86WinCOFFTargetStreamer.cpp -------- 61 MCSymbol *End = nullptr; global() member 139 emitFPOStackAlign(unsigned Align,SMLoc L) emitFPOStackAlign() argument 237 emitFPOStackAlign(unsigned Align,SMLoc L) emitFPOStackAlign() argument [all...] |