| /freebsd/sys/contrib/dev/iwlwifi/cfg/ |
| H A D | rf-hr.c | 24 #define IWL_QU_B_HR_B_MODULE_FIRMWARE(api) \ argument 25 IWL_QU_B_HR_B_FW_PRE "-" __stringify(api) ".ucode" 26 #define IWL_QUZ_A_HR_B_MODULE_FIRMWARE(api) \ argument 27 IWL_QUZ_A_HR_B_FW_PRE "-" __stringify(api) ".ucode" 28 #define IWL_QU_C_HR_B_MODULE_FIRMWARE(api) \ argument 29 IWL_QU_C_HR_B_FW_PRE "-" __stringify(api) ".ucode" 30 #define IWL_SO_A_HR_B_MODULE_FIRMWARE(api) \ argument 31 IWL_SO_A_HR_B_FW_PRE "-" __stringify(api) ".ucode" 32 #define IWL_MA_A_HR_B_FW_MODULE_FIRMWARE(api) \ argument 33 IWL_MA_A_HR_B_FW_PRE "-" __stringify(api) ".ucode" [all …]
|
| H A D | rf-jf.c | 19 #define IWL_QUZ_A_JF_B_MODULE_FIRMWARE(api) \ argument 20 IWL_QUZ_A_JF_B_FW_PRE "-" __stringify(api) ".ucode" 21 #define IWL_QU_B_JF_B_MODULE_FIRMWARE(api) \ argument 22 IWL_QU_B_JF_B_FW_PRE "-" __stringify(api) ".ucode" 23 #define IWL_QU_C_JF_B_MODULE_FIRMWARE(api) \ argument 24 IWL_QU_C_JF_B_FW_PRE "-" __stringify(api) ".ucode" 25 #define IWL_SO_A_JF_B_MODULE_FIRMWARE(api) \ argument 26 IWL_SO_A_JF_B_FW_PRE "-" __stringify(api) ".ucode"
|
| H A D | 7000.c | 38 #define IWL7260_MODULE_FIRMWARE(api) IWL7260_FW_PRE "-" __stringify(api) ".ucode" argument 41 #define IWL3160_MODULE_FIRMWARE(api) IWL3160_FW_PRE "-" __stringify(api) ".ucode" argument 44 #define IWL3168_MODULE_FIRMWARE(api) IWL3168_FW_PRE "-" __stringify(api) ".ucode" argument 47 #define IWL7265_MODULE_FIRMWARE(api) IWL7265_FW_PRE "-" __stringify(api) ".ucode" argument 50 #define IWL7265D_MODULE_FIRMWARE(api) IWL7265D_FW_PRE "-" __stringify(api) ".ucode" argument
|
| H A D | 9000.c | 24 #define IWL9000_MODULE_FIRMWARE(api) \ argument 25 IWL9000_FW_PRE "-" __stringify(api) ".ucode" 26 #define IWL9260_MODULE_FIRMWARE(api) \ argument 27 IWL9260_FW_PRE "-" __stringify(api) ".ucode"
|
| H A D | 8000.c | 31 #define IWL8000_MODULE_FIRMWARE(api) \ argument 32 IWL8000_FW_PRE "-" __stringify(api) ".ucode" 35 #define IWL8265_MODULE_FIRMWARE(api) \ argument 36 IWL8265_FW_PRE "-" __stringify(api) ".ucode"
|
| /freebsd/contrib/lutok/ |
| H A D | Makefile.am | 171 all-local: api-docs/api-docs.tag 173 api-docs/api-docs.tag: $(builddir)/Doxyfile $(SOURCES) 174 $(AM_V_GEN)rm -rf api-docs; \ 175 mkdir -p api-docs; \ 176 ${DOXYGEN} $(builddir)/Doxyfile 2>&1 | tee api-docs/warnings; \ 177 rm -f api-docs/html/installdox 178 api-docs/html: api-docs/api-docs.tag 180 CLEAN_TARGETS += clean-api-docs 181 clean-api-docs: 182 rm -rf api-docs [all …]
|
| /freebsd/contrib/kyua/ |
| H A D | Makefile.am | 150 PHONY_TARGETS += check-api-docs 151 check-api-docs: api-docs/api-docs.tag 152 @$(AWK) -f $(srcdir)/admin/check-api-docs.awk api-docs/doxygen.out 154 api-docs/api-docs.tag: $(builddir)/Doxyfile $(SOURCES) 155 @$(MKDIR_P) api-docs 156 @rm -f api-docs/doxygen.out api-docs/doxygen.out.tmp 158 >api-docs/doxygen.out.tmp 2>&1 && \ 159 mv api-docs/doxygen.out.tmp api-docs/doxygen.out 161 CLEAN_TARGETS += clean-api-docs 162 clean-api-docs: [all …]
|
| /freebsd/contrib/libcbor/doc/source/ |
| H A D | api.rst | 27 api/item_types 28 api/item_reference_counting 29 api/decoding 30 api/encoding 31 api/streaming_decoding 32 api/streaming_encoding 33 api/type_0_1 34 api/type_2 35 api/type_3 36 api/type_4 [all …]
|
| H A D | using.rst | 35 - ``cbor/arrays.h`` - :doc:`api/type_4` 36 - ``cbor/bytestrings.h`` - :doc:`api/type_2` 37 - ``cbor/callbacks.h`` - Callbacks used for :doc:`api/streaming_decoding` 40 - ``cbor/encoding.h`` - Streaming encoders for :doc:`api/streaming_encoding` 41 - ``cbor/floats_ctrls.h`` - :doc:`api/type_7` 42 - ``cbor/ints.h`` - :doc:`api/type_0_1` 43 - ``cbor/maps.h`` - :doc:`api/type_5` 46 - ``cbor/strings.h`` - :doc:`api/type_3` 47 - ``cbor/tags.h`` - :doc:`api/type_6` 55 :doc:`API documentation <api>` should then provide with all the information you may need.
|
| H A D | internal.rst | 85 Contains pointer to the actual data. Small, fixed size items (:doc:`api/type_0_1`, :doc:`api/type_6`, :doc:`api/type_7`) are allocated as a single memory block. 106 Dynamically sized types (:doc:`api/type_2`, :doc:`api/type_3`, :doc:`api/type_4`, :doc:`api/type_5`) may store handle and data in separate locations. This enables creating large items (e.g :doc:`byte strings <api/type_2>`) without :func:`realloc` or copying large blocks of memory. One simply attaches the correct pointer to the handle. 115 Used both by both :doc:`api/type_0_1` 127 As outlined in :doc:`api`, ther [all...] |
| /freebsd/crypto/openssl/Configurations/ |
| H A D | 15-android.conf | 55 my ($sysroot, $api, $arch); 62 ($api, $arch) = ($1, $2); 66 $api = "*"; 71 $api = $1; 80 } glob("$ndk/platforms/android-$api"); 81 die "no $ndk/platforms/android-$api" if ($#platforms < 0); 85 $api = $1; 86 } elsif ($api eq "*") { 92 $api = $1; 98 die "Could not get default API Level" if ($api eq "*"); [all …]
|
| /freebsd/crypto/krb5/src/lib/kadm5/ |
| H A D | t_kadm5.c | 36 static uint32_t api; variable 88 KADM5_STRUCT_VERSION, api, NULL, &handle)); in get_handle() 384 if (api >= KADM5_API_VERSION_3) { in test_create_policy() 770 0x65432101, api, NULL, &handle), in test_init_destroy() 773 1, api, NULL, &handle), KADM5_BAD_STRUCT_VERSION); in test_init_destroy() 777 KADM5_STRUCT_VERSION_MASK, api, NULL, &handle), in test_init_destroy() 780 KADM5_STRUCT_VERSION_MASK | 0xca, api, NULL, in test_init_destroy() 805 api, KADM5_STRUCT_VERSION, NULL, &handle), in test_init_destroy() 825 KADM5_STRUCT_VERSION, api, NULL, &handle); in test_init_destroy() 832 KADM5_STRUCT_VERSION, api, NULL, &handle); in test_init_destroy() [all …]
|
| /freebsd/release/scripts/ |
| H A D | atlas-upload.sh | 86 …/usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/boxes -X POST -d "box[name]=${BOX}" -d "access_t… 87 …/usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX} -X PUT -d "box[is_private… 88 …/usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX} -X PUT -d "box[descriptio… 102 …/usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}/versions -X POST -d "vers… 103 …/usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}/version/${VERSION} -X PUT… 123 …/usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}/version/${VERSION}/provid… 154 …/usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}/version/${VERSION}/releas…
|
| /freebsd/contrib/ofed/libibverbs/ |
| H A D | ibverbs.h | 45 #define symver(name, api, ver) asm(".symver " #name "," #api "@" #ver) argument 46 #define default_symver(name, api) \ argument 47 asm(".symver " #name "," #api "@@" DEFAULT_ABI) 48 #define private_symver(name, api) \ argument 49 asm(".symver " #name "," #api "@@IBVERBS_PRIVATE_14")
|
| /freebsd/contrib/libxo/xohtml/external/ |
| H A D | jquery.qtip.js | 234 QTIP.api[this.id] = this; 284 delete QTIP.api[this.id]; 334 content.text = function(event, api) { argument 335 var loading = text || $(this).attr(api.options.content.attr) || 'Loading...', 338 $.extend({}, ajax, { context: api }) 342 if(content && once) { api.set('content.text', content); } 346 if(api.destroyed || xhr.status === 0) { return; } 347 api.set('content.text', status + ': ' + error); 350 return !once ? (api.set('content.text', loading), deferred) : loading; 1331 var api = QTIP.api[ $.attr(this, ATTR_ID) ]; [all …]
|
| /freebsd/sys/contrib/zstd/ |
| H A D | CHANGELOG | 25 api: Various functions promoted from experimental to stable API: (#2579-2581, @senhuang42) 28 api: Several experimental functions have been deprecated and will emit a compiler warning (#2582, @… 39 api: ZSTDMT_NBWORKERS_MAX reduced to 64 for 32-bit environments (@Cyan4973) 83 api: Add (De)Compression Tracing Functionality (#2482, @terrelln) 84 api: Support References to Multiple DDicts (#2446, @senhuang42) 85 api: Add Function to Generate Skippable Frame (#2439, @senhuang42) 120 api : new sequence ingestion API, by @senhuang42 121 api : shared thread pool: control total nb of threads used by multiple compression jobs, by @marxin 122 api : new ZSTD_getDictID_fromCDict(), by @LuAPi 123 api : zlibWrapper only uses public API, and is compatible with dynamic library, by @terrelln [all …]
|
| /freebsd/sys/contrib/openzfs/config/ |
| H A D | kernel-fpu.m4 | 28 #include <asm/fpu/api.h> 32 [kernel has asm/fpu/api.h]) 41 AC_MSG_RESULT([asm/fpu/api.h asm/fpu/internal.h]) 43 AC_MSG_RESULT([asm/fpu/api.h]) 55 #include <asm/fpu/api.h> 70 #include <asm/fpu/api.h>
|
| /freebsd/contrib/xz/doxygen/ |
| H A D | Doxyfile | 4 # into ../doc/api. 15 STRIP_FROM_PATH = ../src/liblzma/api 16 INPUT = ../src/liblzma/api 27 HTML_OUTPUT = api
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 2793 APInt api = Val; in convertFromAPInt() local 2796 if (isSigned && api.isNegative()) { in convertFromAPInt() 2798 api = -api; in convertFromAPInt() 2801 return convertFromUnsignedParts(api.getRawData(), partCount, rounding_mode); in convertFromAPInt() 2838 APInt api = APInt(width, ArrayRef(parts, partCount)); in convertFromZeroExtendedInteger() local 2843 api = -api; in convertFromZeroExtendedInteger() 2846 return convertFromUnsignedParts(api.getRawData(), partCount, rounding_mode); in convertFromZeroExtendedInteger() 3727 APInt api = bitcastToAPInt(); in convertToFloat() local 3728 return api.bitsToFloat(); in convertToFloat() 3734 APInt api = bitcastToAPInt(); in convertToDouble() local [all …]
|
| /freebsd/lib/liblzma/ |
| H A D | Makefile | 10 .PATH: ${LZMADIR}/api/lzma 133 ${LZMADIR}/api/lzma/version.h 135 ${LZMADIR}/api/lzma/version.h 137 ${LZMADIR}/api/lzma/version.h 144 -I${LZMADIR}/api \
|
| /freebsd/sys/dev/pms/freebsd/driver/ini/src/ |
| H A D | Readme.freebsd.txt | 15 Tisa/sallsdk/api 19 Tisa/discovery/api 21 Tisa/sat/api 24 Tisa/tisa/api
|
| /freebsd/sys/modules/pms/ |
| H A D | Makefile | 5 ${SRCTOP}/sys/dev/pms/RefTisa/sallsdk/api \ 8 ${SRCTOP}/sys/dev/pms/RefTisa/discovery/api \ 10 ${SRCTOP}/sys/dev/pms/RefTisa/sat/api \ 12 ${SRCTOP}/sys/dev/pms/RefTisa/tisa/api \
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 653 void initFromAPInt(const fltSemantics *Sem, const APInt &api); 654 template <const fltSemantics &S> void initFromIEEEAPInt(const APInt &api); 655 void initFromHalfAPInt(const APInt &api); 656 void initFromBFloatAPInt(const APInt &api); 657 void initFromFloatAPInt(const APInt &api); 658 void initFromDoubleAPInt(const APInt &api); 659 void initFromQuadrupleAPInt(const APInt &api); 660 void initFromF80LongDoubleAPInt(const APInt &api); 661 void initFromPPCDoubleDoubleAPInt(const APInt &api); 662 void initFromFloat8E5M2APInt(const APInt &api); [all …]
|
| /freebsd/crypto/openssl/crypto/thread/ |
| H A D | build.info | 12 api.c internal.c $THREADS_ARCH 17 $THREADS=api.c arch/thread_win.c
|
| /freebsd/sys/dev/random/ |
| H A D | build.sh | 42 ../../crypto/rijndael/rijndael-api-fst.c \ 52 ../../crypto/rijndael/rijndael-api-fst.c \
|