/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | MVEGatherScatterLowering.cpp | 86 // Decompose a ptr into Base and Offsets, potentially using a GEP to return a 87 // scalar base and vector offsets, or else fallback to using a base of 0 and 89 Value *decomposePtr(Value *Ptr, Value *&Offsets, int &Scale, 92 // Check for a getelementptr and deduce base and offsets from it, on success 93 // returning the base directly and the offsets indirectly using the Offsets 95 Value *decomposeGEP(Value *&Offsets, FixedVectorType *Ty, 108 // Create a gather from a base + vector of offsets 122 // Create a scatter to a base + vector of offsets 123 Instruction *tryCreateMaskedScatterOffset(IntrinsicInst *I, Value *Offsets, 134 // QI gathers and scatters can increment their offsets on their own if [all …]
|
/freebsd/contrib/dialog/ |
H A D | columns.c | 62 * Parse the source string, storing the offsets and widths of each column in 66 split_row(char *source, unsigned *offsets, unsigned *widths) in split_row() argument 76 widths[result - 1] = offset - offsets[result - 1] - (unsigned) mark; in split_row() 78 offsets[result] = offset; in split_row() 83 widths[result - 1] = offset - offsets[result - 1]; in split_row() 101 unsigned *offsets; in dlg_align_columns() local 115 offsets = dlg_calloc(unsigned, maxcols); in dlg_align_columns() 119 assert_ptr(offsets, "dlg_align_columns"); in dlg_align_columns() 124 unsigned cols = split_row(*value, offsets, widths); in dlg_align_columns() 139 unsigned cols = split_row(*value, offsets, widths); in dlg_align_columns() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/ |
H A D | GsymCreator.h | 44 /// or LineTable objects, should get the string table offsets by calling 66 /// - Function Info Offsets 78 /// of Header.NumAddresses address offsets. These offsets are sorted and can be 80 /// stored as offsets from a 64 bit base address found in Header.BaseAddress. 81 /// This allows the address table to contain 8, 16, or 32 offsets. This allows 85 /// address offsets in the address table is specified in the header in 90 /// FUNCTION INFO OFFSETS TABLE 92 /// The function info offsets table immediately follows the address table and 93 /// consists of Header.NumAddresses 32 bit file offsets: one for each address 95 /// offsets in this table are the relative offsets from the start offset of the [all …]
|
H A D | Header.h | 55 /// The size in bytes of each address offset in the address offsets table. 59 /// The 64 bit base address that all address offsets in the address offsets 61 /// offsets table to be smaller on disk. 63 /// The number of addresses stored in the address offsets table.
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/ |
H A D | OutputSections.h |
|
/freebsd/contrib/ntp/libparse/ |
H A D | ieee754io.c | 145 offsets_t offsets, in put_byte() 150 *(bufp + offsets[*fieldindex]) = val; in put_byte() 164 offsets_t offsets in fetch_ieee754() 206 val = get_byte(bufp, offsets, &fieldindex); /* fetch sign byte & first part of characteristic */ in fetch_ieee754() 211 val = get_byte(bufp, offsets, &fieldindex); /* fetch rest of characteristic and start of mantissa */ in fetch_ieee754() 222 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8; in fetch_ieee754() 223 mantissa_low |= get_byte(bufp, offsets, &fieldindex); in fetch_ieee754() 231 mantissa_high |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8; in fetch_ieee754() 232 mantissa_high |= get_byte(bufp, offsets, &fieldindex); in fetch_ieee754() 234 mantissa_low = (u_long)get_byte(bufp, offsets, in fetch_ieee754() 147 put_byte(unsigned char * bufp,offsets_t offsets,int * fieldindex,unsigned char val) put_byte() argument 166 fetch_ieee754(unsigned char ** buffpp,int size,l_fp * lfpp,offsets_t offsets) fetch_ieee754() argument 405 put_ieee754(unsigned char ** bufpp,int size,l_fp * lfpp,offsets_t offsets) put_ieee754() argument [all...] |
/freebsd/sys/dev/agp/ |
H A D | agpreg.h | 33 * Offsets for various AGP configuration registers. 38 * Offsets from the AGP Capability pointer. 67 * Config offsets for Intel AGP chipsets. 76 * Config offsets for Intel i8xx/E7xxx AGP chipsets. 84 * Config offsets for VIA AGP 2.x chipsets. 91 * Config offsets for VIA AGP 3.0 chipsets. 99 * Config offsets for SiS AGP chipsets. 107 * Config offsets for Ali AGP chipsets. 114 * Config offsets for the AMD 751 chipset. 127 * Memory mapped register offsets for AMD 751 chipset. [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | Analysis.h | 62 /// If Offsets is non-null, it points to a vector to be filled in 63 /// with the in-memory offsets of each of the individual values. 68 SmallVectorImpl<TypeSize> *Offsets = nullptr, 79 SmallVectorImpl<TypeSize> *Offsets = nullptr, 81 ComputeValueVTs(TLI, DL, Ty, ValueVTs, nullptr, Offsets, StartingOffset); 94 /// If Offsets is non-null, it points to a vector to be filled in 95 /// with the in-memory offsets of each of the individual values. 99 SmallVectorImpl<uint64_t> *Offsets = nullptr,
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/offsetof/ |
H A D | tst.OffsetofArith.d | 32 * SECTION: Structs and Unions/Member Sizes and Offsets 59 printf("Addition of offsets (c+x+y)= %d\n", add); 60 printf("Subtraction of offsets (y-x)= %d\n", sub); 61 printf("Multiplication of offsets (x*c) = %d\n", mul); 62 printf("Division of offsets (y/x) = %d\n", div);
|
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | alloc_entry.c | 142 int offsets[MAX_ENTRY_SIZE / sizeof(short)]; in _nc_wrap_entry() local 178 if (i < SIZEOF(offsets)) { in _nc_wrap_entry() 180 offsets[i] = ABSENT_OFFSET; in _nc_wrap_entry() 182 offsets[i] = CANCELLED_OFFSET; in _nc_wrap_entry() 184 offsets[i] = (int) (tp->Strings[i] - stringbuf); in _nc_wrap_entry() 201 if (i < SIZEOF(offsets)) { in _nc_wrap_entry() 202 if (offsets[i] == ABSENT_OFFSET) { in _nc_wrap_entry() 204 } else if (offsets[i] == CANCELLED_OFFSET) { in _nc_wrap_entry() 207 tp->Strings[i] = tp->str_table + offsets[i]; in _nc_wrap_entry() 215 if (n < SIZEOF(offsets)) { in _nc_wrap_entry() [all …]
|
H A D | write_entry.c | 584 compute_offsets(char **Strings, size_t strmax, short *offsets) in compute_offsets() argument 591 offsets[i] = -1; in compute_offsets() 593 offsets[i] = -2; in compute_offsets() 595 offsets[i] = (short) nextfree; in compute_offsets() 725 short offsets[MAX_ENTRY_SIZE / 2]; in _nc_write_object() local 779 nextfree = compute_offsets(tp->Strings, strmax, offsets); in _nc_write_object() 830 TRACE_OUT(("String offsets begin at %04x", *offset)); in _nc_write_object() 832 /* the string offsets */ in _nc_write_object() 833 convert_shorts(buf, offsets, strmax); in _nc_write_object() 860 offsets); in _nc_write_object() [all …]
|
/freebsd/tests/sys/geom/class/eli/ |
H A D | unaligned_io.c | 55 unsigned int offsets, secsz; in main() local 92 * Limit the number of offsets we test with, to avoid spending too much in main() 95 offsets = MAX(EALG_MAX_BLOCK_LEN, HMAC_MAX_BLOCK_LEN) + 1; in main() 99 * buf2, except at varying offsets into buf2. After each read, compare in main() 106 for (unsigned int i = 0; i < offsets; i++) { in main() 119 for (unsigned int i = 0; i < offsets; i++) { in main()
|
/freebsd/sys/contrib/device-tree/Bindings/mmc/ |
H A D | nvidia,tegra20-sdhci.yaml | 113 description: Specify drive strength calibration offsets for 1.8 V 123 description: Specify drive strength calibration offsets for 3.3 V 133 description: Specify drive strength calibration offsets for SDR104 mode. 137 description: Specify drive strength calibration offsets for HS400 mode. 141 description: Specify drive strength calibration offsets for 1.8 V 151 description: Specify drive strength calibration offsets for 3.3 V 168 description: Specify drive strength calibration offsets for SDR104 mode. 172 description: Specify drive strength calibration offsets for HS400 mode.
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | Analysis.cpp | 76 /// If Offsets is non-null, it points to a vector to be filled in 77 /// with the in-memory offsets of each of the individual values. 82 SmallVectorImpl<TypeSize> *Offsets, in ComputeValueVTs() argument 89 // If the Offsets aren't needed, don't query the struct layout. This allows in ComputeValueVTs() 91 // need offsets. in ComputeValueVTs() 92 const StructLayout *SL = Offsets ? DL.getStructLayout(STy) : nullptr; in ComputeValueVTs() 100 ComputeValueVTs(TLI, DL, *EI, ValueVTs, MemVTs, Offsets, in ComputeValueVTs() 110 ComputeValueVTs(TLI, DL, EltTy, ValueVTs, MemVTs, Offsets, in ComputeValueVTs() 121 if (Offsets) in ComputeValueVTs() 122 Offsets->push_back(StartingOffset); in ComputeValueVTs() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SMInstructions.td | 107 class SM_Probe_Pseudo <string opName, RegisterClass baseClass, OffsetMode offsets> 109 !con((ins i8imm:$sdata, baseClass:$sbase), offsets.Ins), 110 " $sdata, $sbase, " # offsets.Asm> { 117 let has_offset = offsets.HasOffset; 118 let has_soffset = offsets.HasSOffset; 122 RegisterClass dstClass, OffsetMode offsets> 124 !con((ins baseClass:$sbase), offsets.Ins, (ins CPol:$cpol)), 125 " $sdst, $sbase, " # offsets.Asm # "$cpol", []> { 132 let has_offset = offsets.HasOffset; 133 let has_soffset = offsets.HasSOffset; [all …]
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_provider.h | 69 uint32_t *pi_offs; /* offsets into the function */ 70 uint32_t *pi_enoffs; /* is-enabled offsets */ 71 uint_t pi_noffs; /* number of offsets */ 73 uint_t pi_nenoffs; /* number of is-enabled offsets */ 89 dt_probe_instance_t *pr_inst; /* list of functions and offsets */
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFListTable.h | 69 /// The number of offsets that follow the header before the range lists. 102 /// the offsets. 133 /// Extract the table header and the array of offsets. 144 /// followed by an array of offsets into a DWARF section, followed by zero or 146 /// the lists' section offsets. 149 /// A mapping between file offsets and lists. It is used to find a particular 166 /// Extract the table header and the array of offsets. 194 /// the offsets. This is dependent on the table format, which is unambiguously
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | DWARFEmitter.cpp | 681 4 + Table.Offsets.size() * (Table.Format == dwarf::DWARF64 ? 8 : 4); in emitDebugStrOffsets() 687 for (uint64_t Offset : Table.Offsets) in emitDebugStrOffsets() 739 /// Emits a simple CU offsets list for a DebugNames section containing a single 749 /// consists of two arrays: an array of string offsets, followed immediately by 750 /// an array of entry offsets. The string offsets are emitted in the order 808 /// Emits the entry pool and returns an array of offsets containing the start 856 // relative offsets and sizes. in emitDebugNames() 1120 // Offsets holds offsets for each range/location list. The i-th element is in writeDWARFLists() 1123 std::vector<uint64_t> Offsets; in writeDWARFLists() local 1126 Offsets.push_back(ListBufferOS.tell()); in writeDWARFLists() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Remarks/ |
H A D | RemarkParser.cpp | 31 Offsets.push_back(Split.first.data() - Buffer.data()); in ParsedStringTable() 37 if (Index >= Offsets.size()) in operator []() 41 Offsets.size()); in operator []() 43 size_t Offset = Offsets[Index]; in operator []() 47 (Index == Offsets.size() - 1) ? Buffer.size() : Offsets[Index + 1]; in operator []()
|
/freebsd/contrib/elftoolchain/libdwarf/ |
H A D | dwarf.3 | 194 Retrieve the offsets associated with an address range descriptor. 255 Retrieve offsets for 330 Retrieve offsets and lengths for a compilation unit. 363 Retrieve both the name and offsets for a function. 376 Return the name and offsets for a global. 538 Retrieve the name and offsets for a type. 551 Retrieve the name and offsets for a variable. 564 Retrieve the name and offsets for a weak symbol. 647 .It Symbols, Expressions, Addresses and Offsets
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
H A D | OutputSections.h | 37 /// There are fields(sizes, offsets) which should be updated after 38 /// sections are generated. To remember offsets and related data 45 /// This structure is used to update strings offsets into .debug_str. 50 /// This structure is used to update strings offsets into .debug_line_str. 145 /// Type for list of pointers to patches offsets. 180 /// with offsets inside the whole file. This field keeps offset 205 /// While creating patches, offsets to attributes may be partially in ADD_PATCHES_LIST() 300 /// This class keeps contents and offsets to the debug sections. Any objects 302 /// class to track debug sections offsets and keep sections data.
|
/freebsd/contrib/ntp/scripts/stats/ |
H A D | README.timecodes | 38 poll: ?; offsets: Y = none, D = 3, T = 7, A = 0, Q = none 56 poll: ?; offsets: Y = 2, D = 5, T = 9, A = 0, Q = 1 81 poll: none; offsets: Y = none, D = 0, T = 4, A = 12, Q = 12 98 poll: none; offsets: Y = none, D = 15, T = 0, A = 9, Q = none 116 poll: "QMQDQT"; offsets: Y = 0, D = 3 T = 1,, A = 11, Q = 13
|
/freebsd/sys/contrib/zstd/lib/dictBuilder/ |
H A D | fastcover.c | 129 size_t *offsets; member 275 free(ctx->offsets); in FASTCOVER_ctx_destroy() 276 ctx->offsets = NULL; in FASTCOVER_ctx_destroy() 294 size_t start = ctx->offsets[i]; /* start of current dmer */ in FASTCOVER_computeFrequency() 295 size_t const currSampleEnd = ctx->offsets[i+1]; in FASTCOVER_computeFrequency() 364 /* The offsets of each file */ in FASTCOVER_ctx_init() 365 ctx->offsets = (size_t*)calloc((nbSamples + 1), sizeof(size_t)); in FASTCOVER_ctx_init() 366 if (ctx->offsets == NULL) { in FASTCOVER_ctx_init() 372 /* Fill offsets from the samplesSizes */ in FASTCOVER_ctx_init() 374 ctx->offsets[0] = 0; in FASTCOVER_ctx_init() [all …]
|
H A D | cover.c | 222 size_t *offsets; member 365 const size_t *curOffsetPtr = ctx->offsets; in COVER_group() 366 const size_t *offsetsEnd = ctx->offsets + ctx->nbSamples; in COVER_group() 370 size_t curSampleEnd = ctx->offsets[0]; in COVER_group() 536 if (ctx->offsets) { in COVER_ctx_destroy() 537 free(ctx->offsets); in COVER_ctx_destroy() 538 ctx->offsets = NULL; in COVER_ctx_destroy() 592 /* The offsets of each file */ in COVER_ctx_init() 593 ctx->offsets = (size_t *)malloc((nbSamples + 1) * sizeof(size_t)); in COVER_ctx_init() 594 if (!ctx->suffix || !ctx->dmerAt || !ctx->offsets) { in COVER_ctx_init() [all …]
|
/freebsd/contrib/file/ |
H A D | TODO | 21 Strings will be converted to offsets from the string table. 39 - We could use file_pipe2file more (for EOF offsets, CDF documents), 44 needs negative offsets.
|