Home
last modified time | relevance | path

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

12345678910>>...44

/freebsd/crypto/openssl/crypto/
H A Dsparccpuid.S1 ! Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved.
9 # define ABI64 /* They've said -xarch=v9 at command line */
11 # define ABI64 /* They've said -m64 at command line */
17 # define FRAME -192
20 # define FRAME -96
43 mov .zero-(.-4),%o0
51 ! to determine if the CPU the code is executing on is V8- or
52 ! V9-compliant, as V9 returns a distinct value of 0x99,
54 .word 0x91408000 !rd %ccr,%o0
60 .word 0xbfa00040 !fmovd %f0,%f62
[all …]
H A Darmv4cpuid.pl2 # Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
16 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or
17 ( $xlate="${dir}perlasm/arm-xlate.pl" and -f $xlate) or
18 die "can't locate arm-xlate.pl";
50 stmdb sp!,{r4-r6,lr}
58 mov r0,#-1
67 ldmia sp!,{r4-r6,lr}
70 .word 0xe12fff1e @ bx lr
72 .size OPENSSL_atomic_add,.-OPENSSL_atomic_add
109 .word 0xe12fff1e @ bx lr
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitVector.h1 //===- llvm/ADT/BitVector.h - Bit vectors -----------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
39 assert(Current != -1 && "Trying to advance past end."); in advance()
88 "Unsupported word size");
93 unsigned Size = 0; // Size of bitvector in bits. variable
138 return const_set_bits_iterator(*this, -1); in set_bits_end()
144 /// BitVector default ctor - Creates an empty bitvector.
147 /// BitVector ctor - Creates a bitvector of specified number of bits. All
[all …]
/freebsd/crypto/openssl/crypto/ec/curve448/
H A Dcurve448utils.h2 * Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
21 * Internal word types. Somewhat tricky. This could be decided separately per
22 * platform. However, the structs do need to be all the same size and
32 # define C448_WORD_BITS 64 /* The number of bits in a word */
34 # define C448_WORD_BITS 32 /* The number of bits in a word */
39 /* Word size for internal computations */
41 /* Signed word size for internal computations */
43 /* "Boolean" type, will be set to all-zero or all-one (i.e. -1u) */
45 /* Double-word size for internal computations */
47 /* Signed double-word size for internal computations */
[all …]
/freebsd/crypto/libecc/include/libecc/words/
H A Dwords.h2 * Copyright (C) 2017 - This file is part of libecc project
7 * Jean-Pierre FLORI <jean-pierre.flori@ssi.gouv.fr>
24 * If a word size is forced, we use the proper words.h definition.
25 * By default, 64-bit word size is used since it is the most reasonable
34 /* The word size is forced by the compilation chain */
36 /* Dynamic include depending on the word size */
39 #error Unsupported word size concat
42 /* The word size is usually deduced from the known platforms.
44 * we use WORDSIZE=64. This is obviously the case on 64-bit platforms,
45 * but this should also be the case on most 32-bit platforms where
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A DREADME.pod11 bn_print, bn_dump, bn_set_max, bn_set_high, bn_set_low - BIGNUM
80 int dmax; /* Size of the d array. */
87 least significant word first. A B<BN_ULONG> can be either 16, 32 or 64 bits
88 in size, depending on the 'number of bits' (B<BITS2>) specified in
91 B<dmax> is the size of the B<d> array that has been allocated. B<top>
108 =head2 Low-level arithmetic operations
113 bn_mul_words(B<rp>, B<ap>, B<num>, B<w>) operates on the B<num> word
115 in B<rp>, and returns the high word (carry).
118 word arrays B<rp> and B<ap>. It computes B<ap> * B<w> + B<rp>, places
119 the result in B<rp>, and returns the high word (carry).
[all …]
/freebsd/contrib/libpcap/msdos/
H A Dpktdrvr.c8 * Description..: Packet-driver interface for 16/32-bit C :
24 #include "pcap-dos.h"
25 #include "pcap-int.h"
74 WORD r_flags;
75 WORD r_es, r_ds, r_fs, r_gs;
76 WORD r_ip, r_cs, r_sp, r_ss;
79 /* Data located in a real-mode segment. This becomes far at runtime
82 WORD _rxOutOfs;
83 WORD _rxInOfs;
88 WORD _dummy[2]; /* screenSeg,newInOffset */
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/
H A DM68kMCCodeEmitter.cpp1 //===-- M68kMCCodeEmitter.cpp - Convert M68k code emitter -------*
218 for (uint64_t Word : Data) { encodeInstruction() local
[all...]
/freebsd/sys/contrib/dev/mediatek/mt76/mt7603/
H A Dmcu.c1 // SPDX-License-Identifier: ISC
24 dev_err(mdev->dev, "MCU message %02x (seq %d) timed out\n", in mt7603_mcu_parse_response()
26 dev->mcu_hang = MT7603_WATCHDOG_TIMEOUT; in mt7603_mcu_parse_response()
27 return -ETIMEDOUT; in mt7603_mcu_parse_response()
30 rxd = (struct mt7603_mcu_rxd *)skb->data; in mt7603_mcu_parse_response()
31 if (seq != rxd->seq) in mt7603_mcu_parse_response()
32 return -EAGAIN; in mt7603_mcu_parse_response()
42 int hdrlen = dev->mcu_running ? sizeof(struct mt7603_mcu_txd) : 12; in mt7603_mcu_skb_send_msg()
46 mdev->mcu.timeout = 3 * HZ; in mt7603_mcu_skb_send_msg()
48 seq = ++mdev->mcu.msg_seq & 0xf; in mt7603_mcu_skb_send_msg()
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dspace_map.c9 * or https://opensource.org/licenses/CDDL-1.0.
40 * Note on space map block size:
42 * The data for a given space map can be kept on blocks of any size.
44 * DMU to keep more data in-core, and also to waste more I/O bandwidth
49 * Enabled whenever we want to stress test the use of double-word
55 * Override the default indirect block size of 128K, instead use 16K for
58 * or two indirect blocks (16K-32K, rather than 128K).
82 * Iterate through the space map, invoking the callback on each (non-debug)
88 uint64_t blksz = sm->sm_blksz; in space_map_iterate()
94 dmu_prefetch(sm->sm_os, space_map_object(sm), 0, 0, end, in space_map_iterate()
[all …]
/freebsd/sys/crypto/openssl/arm/
H A Darmv4cpuid.S1 /* Do not modify. This file is auto-generated from armv4cpuid.pl. */
35 mov r0,#-1
47 .word 0xe12fff1e @ bx lr
49 .size OPENSSL_atomic_add,.-OPENSSL_atomic_add
86 .word 0xe12fff1e @ bx lr
88 .size OPENSSL_cleanse,.-OPENSSL_cleanse
116 .word 0xe12fff1e @ bx lr
118 .size CRYPTO_memcmp,.-CRYPTO_memcmp
121 .arch armv7-a
130 .size _armv7_neon_probe,.-_armv7_neon_probe
[all …]
H A Daes-armv4.S1 /* Do not modify. This file is auto-generated from aes-armv4.pl. */
2 @ Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
21 @ Code uses single 1K S-box and is >2 times faster than code generated
22 @ by gcc-3.4.1. This is thanks to unique feature of ARMv4 ISA, which
25 @ is endian-neutral. The performance is ~42 cycles/byte for 128-bit
26 @ key [on single-issue Xscale PXA250 core].
34 @ Rescheduling for dual-issue pipeline resulted in 12% improvement on
35 @ Cortex A8 core and ~25 cycles per byte processed with 128-bit key.
39 @ Profiler-assisted and platform-specific optimization resulted in 16%
63 .word 0xc66363a5, 0xf87c7c84, 0xee777799, 0xf67b7b8d
[all …]
/freebsd/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c1 /*-
2 * Copyright (c) 2012-2017 Dag-Erling Smørgrav
48 * Read a word from a file, respecting shell quoting rules.
54 char *word; in openpam_readword() local
55 size_t size, len; in openpam_readword() local
92 word = NULL; in openpam_readword()
93 size = len = 0; in openpam_readword()
102 if (openpam_straddch(&word, &size, &len, 0) != 0) in openpam_readword()
112 openpam_straddch(&word, &size, &len, '\\') != 0) { in openpam_readword()
113 free(word); in openpam_readword()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kInstrInfo.td1 //===-- M68kInstrInfo.td - Main M68k Instruction Definition -*- tablegen -*-==//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
18 //===----------------------------------------------------------------------===//
20 //===----------------------------------------------------------------------===//
25 def MxSDT_Call : SDTypeProfile<0, -1, [SDTCisVT<0, iPTR>]>;
27 def MxSDT_Ret : SDTypeProfile<0, -1, [
41 // RES, CCR <- op LHS, RHS
49 // RES, CCR <- op LHS, RHS, CCR
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDictionary.h1 //===- FuzzerDictionary.h - Internal header for the Fuzzer ------*- C++ -* ===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 //===----------------------------------------------------------------------===//
33 Size = static_cast<uint8_t>(S); in Set()
37 return Size == w.Size && 0 == memcmp(Data, w.Data, Size);
42 uint8_t size() const { return Size; } in size() function
45 uint8_t Size = 0;
49 typedef FixedWord<64> Word; typedef
54 DictionaryEntry(Word W) : W(W) {} in DictionaryEntry()
[all …]
H A DFuzzerMutate.h1 //===- FuzzerMutate.h - Internal header for the Fuzzer ----------*- C++ -* ===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 //===----------------------------------------------------------------------===//
34 /// Mutates data by invoking user-provided mutator.
35 size_t Mutate_Custom(uint8_t *Data, size_t Size, size_t MaxSize);
36 /// Mutates data by invoking user-provided crossover.
37 size_t Mutate_CustomCrossOver(uint8_t *Data, size_t Size, size_t MaxSize);
39 size_t Mutate_ShuffleBytes(uint8_t *Data, size_t Size, size_t MaxSize);
41 size_t Mutate_EraseBytes(uint8_t *Data, size_t Size, size_t MaxSize);
[all …]
/freebsd/sys/dev/ice/
H A Dice_nvm.c1 /* SPDX-License-Identifier: BSD-3-Clause */
42 * @data: command buffer (size [bytes] = length)
67 cmd->cmd_flags |= ICE_AQC_NVM_FLASH_ONLY; in ice_aq_read_nvm()
71 cmd->cmd_flags |= ICE_AQC_NVM_LAST_CMD; in ice_aq_read_nvm()
72 cmd->module_typeid = CPU_TO_LE16(module_typeid); in ice_aq_read_nvm()
73 cmd->offset_low = CPU_TO_LE16(offset & 0xFFFF); in ice_aq_read_nvm()
74 cmd->offset_hig in ice_aq_read_nvm()
468 u32 offset, size; ice_get_flash_bank_offset() local
1300 ice_read_sr_area_size(struct ice_hw * hw,u16 offset,u32 * size) ice_read_sr_area_size() argument
[all...]
/freebsd/stand/ficl/
H A Dficl.h10 ** Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu)
48 ** Ficl (Forth-inspired command language) is an ANS Forth
66 ** interpreter is re-entrant, so it can be used in multiple instances
80 ** - Standard: Implements the ANSI Forth CORE word set and part
81 ** of the CORE EXT word-set, SEARCH and SEARCH EXT, TOOLS and
83 ** - Extensible: you can export code written in Forth, C,
87 ** - Ficl and C can interact in two ways: Ficl can encapsulate
89 ** - Thread-safe, re-entrant: The shared system dictionary
94 ** - Simple encapsulation into existing systems: a basic implementation
96 ** - ROMable: Ficl is designed to work in RAM-based and ROM code / RAM data
[all …]
/freebsd/share/doc/usd/21.troff/
H A Dm11 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
61 a user-defined \fImacro\fR in place of the control line.
80 or left-parenthesis-introduced, two-character name as in \fB\en(\fIxx\fR.
91 typewriter-like output devices.
104 \fIS\fR is the current type size in points,
128 which is output-device dependent;
131 such as \(mi> (\(->) are often extra wide.
132 The default scaling is ems for the horizontally-oriented requests
145 for the vertically-oriented requests and functions
170 The number, \fIN\fR, may be specified in decimal-fraction form
[all …]
H A Dm51 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
76 The Compatible Time-Sharing System,
89 environment switching, page-position trap, and conditional input mechanisms
90 provide the basis for user-defined implementations.
110 \fI\-N\fR (\fIN\fR from the page bottom) for the footer.
120 &wh \-1i fo
125 the initial pseudo-page transition (\(sc3).
127 was typically forced out because some part or whole word didn't fit on it.
129 that word or part word will be forced out.
132 the \fIno-break\fR control character \fB\'\fR
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProcess.inc1 //===- Win32/Process.cpp - Win32 Process Implementation ------- -*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
35 //===----------------------------------------------------------------------===//
38 //===----------------------------------------------------------------------===//
42 #define _HEAPOK (-2)
53 // This function retrieves the page size using GetNativeSystemInfo() and is
57 // GetNativeSystemInfo() provides the physical page size which may differ
58 // from GetSystemInfo() in 32-bit applications running under WOW64.
[all …]
/freebsd/stand/i386/libi386/
H A Drelocater_tramp.S1 /*-
67 add $(relocater.1-relocater), %eax
71 lea (relocater.2-relocater)(%esi), %eax
72 movl %eax, (jump_vector-relocater) (%esi)
75 lea (gdt-relocater) (%esi), %eax
76 movl %eax, (gdtaddr-relocater) (%esi)
79 lgdt (gdtdesc - relocater) (%esi)
80 lidt (idt-relocater) (%esi)
83 ljmp *(jump_vector-relocater) (%esi)
101 * relocate data loop. load source, dest and size from
[all …]
/freebsd/usr.sbin/vidcontrol/
H A Dvidcontrol.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 1994-1996 Søren Schmidt
99 * history buffer size
107 if (ioctl(0, VT_GETACTIVE, &cur_info.active_vty) == -1) in init()
110 cur_info.console_info.size = sizeof(cur_info.console_info); in init()
111 if (ioctl(0, CONS_GETINFO, &cur_info.console_info) == -1) in init()
116 ioctl(0, GIO_SCRNMAP, &cur_info.screen_map) == -1) in init()
119 if (ioctl(0, CONS_GET, &cur_info.video_mode_number) == -1) in init()
124 if (ioctl(0, CONS_MODEINFO, &cur_info.video_mode_info) == -1) in init()
[all …]
/freebsd/sys/contrib/ck/include/
H A Dck_bitmap.h2 * Copyright 2012-2015 Samy Al Bahra.
3 * Copyright 2012-2014 AppNexus, Inc.
52 #define CK_BITMAP_BLOCKS(n) (((n) + CK_BITMAP_BLOCK - 1) / CK_BITMAP_BLOCK)
64 ck_bitmap_iterator_init((a), &(b)->bitmap)
67 ck_bitmap_init(&(a)->bitmap, (b), (c))
70 ck_bitmap_next(&(a)->bitmap, (b), (c))
73 ck_bitmap_set(&(a)->bitmap, (b))
76 ck_bitmap_bts(&(a)->bitmap, (b))
79 ck_bitmap_reset(&(a)->bitmap, (b))
82 ck_bitmap_test(&(a)->bitmap, (b))
[all …]
/freebsd/stand/efi/loader/arch/arm/
H A Dstart.S1 /*-
45 /* The MS-DOS Stub, only used to get the offset of the COFF header */
49 .long pe_sig - efi_start
51 /* The PE32 Signature. Needs to be 8-byte aligned */
62 .short section_table - optional_header /* Optional header size */
66 .short 0x010b /* PE32 (32-bit addressing) */
69 .long _edata - _end_header /* Code size */
72 .long _start - efi_start /* Entry point */
73 .long _end_header - efi_start /* Start of code */
87 .long _edata - efi_start /* Image size */
[all …]

12345678910>>...44