/freebsd/crypto/openssl/test/ |
H A D | build.info | 1 # TODO: use ../apps/libapps.a instead of direct ../apps/lib source. 7 # Auxiliary program source (copied from ../apps/build.info) 15 # Program init source, that don't have direct linkage with the rest of the 16 # source, and can therefore not be part of a library. 24 SOURCE[libtestutil.a]=testutil/basic_output.c testutil/output.c \ 70 SOURCE[confdump]=confdump.c 74 SOURCE[versions]=versions.c 78 SOURCE[aborttest]=aborttest.c 82 SOURCE[sanitytest]=sanitytest.c 86 SOURCE[rand_test]=rand_test.c [all …]
|
/freebsd/sys/dev/ice/ |
H A D | ice_hw_autogen.h | 5 * Redistribution and use in source and binary forms, with or without 8 * 1. Redistributions of source code must retain the above copyright notice, 43 #define E830_GLTCLAN_TSYN_REG_RANGE_ENFORCE(_i) (0x000FD000 + ((_i) * 64)) /* _i=0...7 */ /* Reset Source: CORER */ 67 #define GL_RDPU_CNTRL 0x00052054 /* Reset Source: CORER */ 90 #define MSIX_PBA(_i) (0x00008000 + ((_i) * 4)) /* _i=0...2 */ /* Reset Source: FLR */ 94 #define MSIX_TADD(_i) (0x00000000 + ((_i) * 16)) /* _i=0...64 */ /* Reset Source: FLR */ 100 #define MSIX_TUADD(_i) (0x00000004 + ((_i) * 16)) /* _i=0...64 */ /* Reset Source: FLR */ 104 #define MSIX_TVCTRL(_i) (0x0000000C + ((_i) * 16)) /* _i=0...64 */ /* Reset Source: FLR */ 108 #define PF0_FW_HLP_ARQBAH_PAGE 0x02D00180 /* Reset Source: EMPR */ 111 #define PF0_FW_HLP_ARQBAL_PAGE 0x02D00080 /* Reset Source [all...] |
/freebsd/contrib/llvm-project/clang/include/clang-c/ |
H A D | CXSourceLocation.h | 1 /*===-- clang-c/CXSourceLocation.h - C Index Source Location ------*- C -*-===*\ 10 |* This header provides the interface to C Index source locations. *| 25 * \defgroup CINDEX_LOCATIONS Physical source locations 27 * Clang represents physical source locations in its abstract syntax tree in 29 * the tokens parsed in the source code. These data types and functions are 30 * used to represent source location information, either for a particular 38 * Identifies a specific source location within a translation 42 * to map a source location to a particular file, line, and column. 50 * Identifies a half-open character range in the source code. 53 * starting and end locations from a source range, respectively. [all …]
|
/freebsd/contrib/libcbor/src/cbor/internal/ |
H A D | loaders.c | 12 uint8_t _cbor_load_uint8(cbor_data source) { return (uint8_t)*source; } in _cbor_load_uint8() argument 14 uint16_t _cbor_load_uint16(const unsigned char *source) { in _cbor_load_uint16() argument 17 memcpy(&result, source, 2); in _cbor_load_uint16() 20 return ((uint16_t) * (source + 0) << 8) + (uint8_t) * (source + 1); in _cbor_load_uint16() 24 uint32_t _cbor_load_uint32(const unsigned char *source) { in _cbor_load_uint32() argument 27 memcpy(&result, source, 4); in _cbor_load_uint32() 30 return ((uint32_t) * (source + 0) << 0x18) + in _cbor_load_uint32() 31 ((uint32_t) * (source in _cbor_load_uint32() 36 _cbor_load_uint64(const unsigned char * source) _cbor_load_uint64() argument 67 _cbor_load_half(cbor_data source) _cbor_load_half() argument 72 _cbor_load_float(cbor_data source) _cbor_load_float() argument 77 _cbor_load_double(cbor_data source) _cbor_load_double() argument [all...] |
/freebsd/contrib/llvm-project/ |
H A D | FREEBSD-Xlist | 333 lldb/source/API/CMakeLists.txt 334 lldb/source/Breakpoint/CMakeLists.txt 335 lldb/source/CMakeLists.txt 336 lldb/source/Commands/CMakeLists.txt 337 lldb/source/Core/CMakeLists.txt 338 lldb/source/DataFormatters/CMakeLists.txt 339 lldb/source/Expression/CMakeLists.txt 340 lldb/source/Host/CMakeLists.txt 341 lldb/source/Host/android/ 342 lldb/source/Host/linux/ [all …]
|
/freebsd/sys/contrib/libsodium/ |
H A D | libsodium.vcxproj.filters | 4 <Filter Include="Source Files"> 19 <Filter>Source Files</Filter> 22 <Filter>Source Files</Filter> 25 <Filter>Source Files</Filter> 28 <Filter>Source Files</Filter> 31 <Filter>Source Files</Filter> 34 <Filter>Source Files</Filter> 37 <Filter>Source Files</Filter> 40 <Filter>Source Files</Filter> 43 <Filter>Source Files</Filter> [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | ConvertUTF.cpp | 48 Conversions between UTF32, UTF-16, and UTF-8. Source code file. 54 source sequences, enhanced error detection, added casts 164 const UTF32* source = *sourceStart; in ConvertUTF32toUTF16() local 166 while (source < sourceEnd) { in ConvertUTF32toUTF16() 171 ch = *source++; in ConvertUTF32toUTF16() 176 --source; /* return to the illegal value itself */ in ConvertUTF32toUTF16() 194 --source; /* Back up source pointer! */ in ConvertUTF32toUTF16() 202 *sourceStart = source; in ConvertUTF32toUTF16() 213 const UTF16* source = *sourceStart; in ConvertUTF16toUTF32() local 216 while (source < sourceEnd) { in ConvertUTF16toUTF32() [all …]
|
H A D | ConvertUTFWrapper.cpp | 19 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source, in ConvertUTF8toWide() argument 25 const UTF8 *Pos = reinterpret_cast<const UTF8*>(Source.begin()); in ConvertUTF8toWide() 26 if (!isLegalUTF8String(&Pos, reinterpret_cast<const UTF8*>(Source.end()))) { in ConvertUTF8toWide() 30 memcpy(ResultPtr, Source.data(), Source.size()); in ConvertUTF8toWide() 31 ResultPtr += Source.size(); in ConvertUTF8toWide() 34 const UTF8 *sourceStart = (const UTF8*)Source.data(); in ConvertUTF8toWide() 40 ConvertUTF8toUTF16(&sourceStart, sourceStart + Source.size(), in ConvertUTF8toWide() 41 &targetStart, targetStart + Source.size(), flags); in ConvertUTF8toWide() 47 const UTF8 *sourceStart = (const UTF8 *)Source.data(); in ConvertUTF8toWide() 53 ConvertUTF8toUTF32(&sourceStart, sourceStart + Source.size(), in ConvertUTF8toWide() [all …]
|
/freebsd/crypto/openssl/providers/implementations/ciphers/ |
H A D | build.info | 29 # This source is common building blocks for all ciphers in all our providers. 30 SOURCE[$COMMON_GOAL]=\ 36 SOURCE[$TDES_1_GOAL]=cipher_tdes.c cipher_tdes_common.c cipher_tdes_hw.c 39 SOURCE[$NULL_GOAL]=\ 42 SOURCE[$AES_GOAL]=\ 54 SOURCE[$AES_GOAL]=cipher_aes_xts_fips.c 57 SOURCE[$SIV_GOAL]=\ 62 SOURCE[$TDES_2_GOAL]=\ 65 SOURCE[$DES_GOAL]=\ 69 SOURCE[$DES_GOAL]=\ [all …]
|
/freebsd/tools/sched/ |
H A D | schedgraph.py | 6 # Redistribution and use in source and binary forms, with or without 9 # 1. Redistributions of source code must retain the above copyright 65 # Add a per-source summary display 324 def __init__(self, master, source): argument 326 if (source.hidden == 1): 330 self.source = source 331 self.name = source.name 367 self.title("Source Configuration") 379 for source in sources: 380 self.addsource(source) [all …]
|
/freebsd/usr.sbin/mtest/ |
H A D | mtest.8 | 5 .\" Redistribution and use in source and binary forms, with or without 8 .\" 1. Redistributions of source code must retain the above copyright 66 .It Ic j Ar mcast-addr Ar ifname Op Ar source-addr 72 If an optional source 73 .Ar source-addr 74 is specified, a source-specific join will be performed; 77 is already joined to the multicast address, the source 80 .It Ic l Ar mcast-addr Ar ifname Op Ar source-addr 85 If a source 86 .Ar source-addr [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | ExternalSemaSource.h | 59 /// Initialize the semantic source with the Sema instance 75 /// Load the set of namespaces that are known to the external source, 99 /// source. 101 /// The external source should append its own tentative definitions to the 103 /// invoked multiple times; the external source should take care not to 109 /// external Sema source. 111 /// The external source should append its own unused, filed-scope to the 113 /// invoked multiple times; the external source should take care not to 119 /// external Sema source. 121 /// The external source should append its own delegating constructors to the [all …]
|
H A D | MultiplexExternalSemaSource.h | 46 /// Constructs a new multiplexing external sema source and appends the 56 /// Appends new source to the source list. 58 ///\param[in] Source - An ExternalSemaSource. 60 void AddSource(ExternalSemaSource *Source); 71 /// previous generation of the AST source. 78 /// source. 120 /// Gives the external AST source an opportunity to complete 124 /// Gives the external AST source an opportunity to complete an 145 /// translation unit involving this external AST source. 149 /// the external AST source. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | arm,coresight-dummy-source.yaml | 4 $id: http://devicetree.org/schemas/arm/arm,coresight-dummy-source.yaml# 7 title: ARM Coresight Dummy source component 14 through the intermediate links connecting the source to the currently selected 17 The Coresight dummy source component is for the specific coresight source 19 there would be Coresight source trace components on sub-processor which 21 is needed to register them as Coresight source devices, so that paths can be 23 source devices, such as enabling and disabling them. It also provides the 24 Coresight dummy source paths for debugging. 26 The primary use case of the coresight dummy source i [all...] |
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | tmmintrin.h | 29 /// integers in the source operand and stores the 8-bit unsigned integer 47 /// integers in the source operand and stores the 8-bit unsigned integer 65 /// integers in the source operand and stores the 16-bit unsigned integer 83 /// integers in the source operand and stores the 16-bit unsigned integer 101 /// integers in the source operand and stores the 32-bit unsigned integer 119 /// integers in the source operand and stores the 32-bit unsigned integer 149 /// A 128-bit vector of [16 x i8] containing one of the source operands. 151 /// A 128-bit vector of [16 x i8] containing one of the source operands. 172 /// A 64-bit vector of [8 x i8] containing one of the source operands. 174 /// A 64-bit vector of [8 x i8] containing one of the source operands. [all …]
|
/freebsd/sys/contrib/dev/acpica/components/resources/ |
H A D | rsmisc.c | 22 * copy of the source code appearing in this file ("Covered Code") an 42 * 3.1. Redistribution of Source with Rights to Further Distribute Source. 43 * Redistribution of source code of any substantial portion of the Covered 44 * Code or modification with rights to further distribute source must include 54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source. 55 * Redistribution of source code of any substantial portion of the Covered 56 * Code or modification without rights to further distribute source must 59 * addition, Licensee may not authorize further sublicense of source of any 119 * Redistribution and use in source and binary forms, with or without 122 * 1. Redistributions of source code must retain the above copyright [all …]
|
/freebsd/share/man/man5/ |
H A D | nsswitch.conf.5 | 9 .\" Redistribution and use in source and binary forms, with or without 12 .\" 1. Redistributions of source code must retain the above copyright 49 Each database comes from a source (such as local files, DNS, NIS , 56 Each source can have an optional trailing criterion that determines 57 whether the next listed source is used, or the search terminates at 58 the current source. 64 .Bl -tag -width Source -compact 65 .It Sy Source 94 If this is present, it must be the only source for that entry. 164 The entry is not present at this source. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | qcom,sdx75-gcc.yaml | 25 - description: Board XO source 26 - description: Sleep clock source 27 - description: EMAC0 sgmiiphy mac rclk source 28 - description: EMAC0 sgmiiphy mac tclk source 29 - description: EMAC0 sgmiiphy rclk source 30 - description: EMAC0 sgmiiphy tclk source 31 - description: EMAC1 sgmiiphy mac rclk source 32 - description: EMAC1 sgmiiphy mac tclk source 33 - description: EMAC1 sgmiiphy rclk source 34 - description: EMAC1 sgmiiphy tclk source [all …]
|
H A D | silabs,si5351.txt | 30 - silabs,pll-source: pair of (number, source) for each pll. Allows 31 to overwrite clock source of pll A (number=0) or B (number=1). 43 - silabs,clock-source: source clock of the output divider stage N, shall be 49 - silabs,multisynth-source: source pll A(0) or B(1) of corresponding multisynth 82 /* connect xtal input as source of pll0 and pll1 */ 83 silabs,pll-source = <0 0>, <1 0>; 88 * - pll0 as clock source of multisynth0 89 * - multisynth0 as clock source of output divider 96 silabs,multisynth-source = <0>; 97 silabs,clock-source = <0>; [all …]
|
/freebsd/crypto/openssl/fuzz/ |
H A D | build.info | 30 SOURCE[asn1]=asn1.c driver.c fuzz_rand.c 34 SOURCE[asn1parse]=asn1parse.c driver.c 38 SOURCE[bignum]=bignum.c driver.c 42 SOURCE[bndiv]=bndiv.c driver.c 46 SOURCE[client]=client.c driver.c fuzz_rand.c 50 SOURCE[cmp]=cmp.c driver.c fuzz_rand.c 54 SOURCE[cms]=cms.c driver.c 58 SOURCE[conf]=conf.c driver.c 62 SOURCE[crl]=crl.c driver.c 66 SOURCE[ct]=ct.c driver.c [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ASTUtils.h | 28 /// ownership of the provided source. 33 ExternalASTSourceWrapper(ExternalASTSource *Source) : m_Source(Source) { in ExternalASTSourceWrapper() argument 240 /// sources, but instead give priority to certain sources. If a source with a 256 /// Construct a SemaSourceWithPriorities with a 'high quality' source that 257 /// has the higher priority and a 'low quality' source that will be used 267 void addSource(clang::ExternalSemaSource &source) { in addSource() argument 268 Sources.push_back(&source); in addSource() 345 // FIXME: Only one source should be able to complete the decls map. in completeVisibleDeclsMap() 371 // Stop after the first source completed the type. in CompleteType() 426 for (auto &Source : Sources) in getMemoryBufferSizes() [all …]
|
/freebsd/crypto/openssl/engines/ |
H A D | build.info | 18 SOURCE[../libcrypto]=e_padlock.c $PADLOCKASM 22 SOURCE[../libcrypto]=e_capi.c 25 SOURCE[../libcrypto]=e_afalg.c 28 SOURCE[../libcrypto]=e_devcrypto.c 33 SOURCE[padlock]=e_padlock.c $PADLOCKASM 38 SOURCE[padlock]=padlock.ld 44 SOURCE[capi]=e_capi.c 48 SOURCE[capi]=capi.ld 54 SOURCE[afalg]=e_afalg.c 58 SOURCE[afalg]=afalg.ld [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | c-lang | 8 0 search/8192 "libhdr" BCPL source text 10 0 search/8192 "LIBHDR" BCPL source text 19 >>&0 clear x source text 23 >0 regex \^#[[:space:]]*pragma C source text 27 >>&0 regex \^#[[:space:]]*endif$ C source text 31 >>&0 regex \^#[[:space:]]*define C source text 34 >0 regex \^[[:space:]]*char(\ \\*|\\*)(.+)(=.*)?;[[:space:]]*$ C source text 37 >0 regex \^[[:space:]]*double(\ \\*|\\*)(.+)(=.*)?;[[:space:]]*$ C source text 40 >0 regex \^[[:space:]]*extern[[:space:]]+ C source text 43 >0 regex \^[[:space:]]*float(\ \\*|\\*)(.+)(=.*)?;[[:space:]]*$ C source text [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/soc/fsl/cpm_qe/qe/ |
H A D | ucc.txt | 22 - rx-clock-name: the UCC receive clock source 23 "none": clock source is disabled 24 "brg1" through "brg16": clock source is BRG1-BRG16, respectively 25 "clk1" through "clk24": clock source is CLK1-CLK24, respectively 26 - tx-clock-name: the UCC transmit clock source 27 "none": clock source is disabled 28 "brg1" through "brg16": clock source is BRG1-BRG16, respectively 29 "clk1" through "clk24": clock source is CLK1-CLK24, respectively 35 - rx-clock : represents the UCC receive clock source. 36 0x00 : clock source is disabled; [all …]
|
/freebsd/lib/libfigpar/ |
H A D | string_m.c | 5 * Redistribution and use in source and binary forms, with or without 8 * 1. Redistributions of source code must retain the above copyright 36 * Counts the number of occurrences of one string that appear in the source 43 strcount(const char *source, const char *find) in strcount() argument 45 const char *p = source; in strcount() 50 if (source == NULL || find == NULL) in strcount() 55 if (strlen(source) == 0 || flen == 0) in strcount() 71 * Replaces all occurrences of `find' in `source' with `replace'. 74 * a pointer to an allocated block of memory. The block of memory that source 77 * will be larger than the original source string. To allocate enough space for [all …]
|