| /freebsd-13.1/contrib/netbsd-tests/lib/libc/stdlib/ |
| H A D | t_getopt.sh | 31 load: $1 57 load="c:d" 59 h_getopt "${load}" "foo -c 1 -d foo" "c=1,d|1" 60 h_getopt "${load}" "foo -d foo bar" "d|2" 61 h_getopt "${load}" "foo -c 2 foo bar" "c=2|2" 62 h_getopt "${load}" "foo -e 1 foo bar" "!?|3" 63 h_getopt "${load}" "foo -d -- -c 1" "d|2" 64 h_getopt "${load}" "foo -c- 1" "c=-|1" 65 h_getopt "${load}" "foo -d - 1" "d|2" 76 load="optstring: abc: [all …]
|
| /freebsd-13.1/contrib/libucl/tests/basic/ |
| H A D | load.in | 4 .load(try=false, multiline=false, trim=false, escape=false, key="key1", target="string", priority=1… 5 .load(try=false, multiline=true, trim=false, escape=false, key="key2", target="string", priority=1)… 6 .load(try=false, multiline=true, trim=true, escape=false, key="key3", target="string", priority=1) … 7 .load(try=false, multiline=true, trim=true, escape=true, key="key4", target="string", priority=1) "… 8 .load(try=false, multiline=false, trim=true, escape=false, key="key5", target="string", priority=1)… 9 .load(try=false, multiline=false, trim=false, escape=true, key="key6", target="string", priority=1)… 10 .load(try=false, multiline=false, trim=true, escape=true, key="key7", target="string", priority=1) … 11 .load(try=false, multiline=false, trim=false, escape=false, key="key8", target="int", priority=1) "… 12 .load(try=false, multiline=false, trim=false, escape=false, key="key9", target="int", priority=4) "… 13 .load(try=true, multiline=false, trim=false, escape=false, key="key10", target="string", priority=1…
|
| /freebsd-13.1/contrib/libucl/python/tests/ |
| H A D | test_load.py | 7 ucl.load() 11 ucl.load(0,0) 14 self.assertEqual(ucl.load(None), None) 19 self.assertEqual(ucl.load(data), valid) 24 self.assertEqual(ucl.load(data), valid) 29 self.assertEqual(ucl.load(data), valid) 55 self.assertEqual(ucl.load("{}"), {}) 58 self.assertEqual(ucl.load("{"), {}) 61 self.assertEqual(ucl.load("}"), {}) 64 self.assertEqual(ucl.load("["), []) [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrHFP.td | 137 def AE : BinaryRX<"ae", 0x7A, null_frag, FP32, load, 4>; 138 def AD : BinaryRX<"ad", 0x6A, null_frag, FP64, load, 8>; 147 def AU : BinaryRX<"au", 0x7E, null_frag, FP32, load, 4>; 148 def AW : BinaryRX<"aw", 0x6E, null_frag, FP64, load, 8>; 157 def SE : BinaryRX<"se", 0x7B, null_frag, FP32, load, 4>; 158 def SD : BinaryRX<"sd", 0x6B, null_frag, FP64, load, 8>; 166 def SU : BinaryRX<"su", 0x7F, null_frag, FP32, load, 4>; 167 def SW : BinaryRX<"sw", 0x6F, null_frag, FP64, load, 8>; 181 def MDE : BinaryRX<"mde", 0x7C, null_frag, FP64, load, 4>; 236 def CE : CompareRX<"ce", 0x79, null_frag, FP32, load, 4>; [all …]
|
| H A D | SystemZPatterns.td | 42 class RMWI<SDPatternOperator load, SDPatternOperator operator, 61 cls:$src1, (load mode:$src2)), 64 (load mode:$src2), cls:$src1), 135 multiclass BlockLoadStore<SDPatternOperator load, ValueType vt, 138 defm : MVCLoadStore<load, vt, mvc, length>; 139 defm : BinaryLoadStore<block_and1, load, vt, nc, length>; 140 defm : BinaryLoadStore<block_and2, load, vt, nc, length>; 141 defm : BinaryLoadStore<block_or1, load, vt, oc, length>; 142 defm : BinaryLoadStore<block_or2, load, vt, oc, length>; 143 defm : BinaryLoadStore<block_xor1, load, vt, xc, length>; [all …]
|
| /freebsd-13.1/usr.sbin/powerd/ |
| H A D | powerd.c | 143 read_usage_times(int *load, int nonice) in read_usage_times() argument 170 if (load) { in read_usage_times() 171 *load = 0; in read_usage_times() 185 *load += 100 - excl * 100 / total; in read_usage_times() 780 if (read_usage_times(&load, nonice)) { 787 if (load > cpu_running_mark) { 788 if (load > 95 || load > cpu_running_mark * 2) 794 } else if (load < cpu_idle_mark && 803 if (load > cpu_running_mark / 2) { 804 if (load > 95 || load > cpu_running_mark) [all …]
|
| /freebsd-13.1/sys/crypto/openssl/arm/ |
| H A D | chacha-armv4.S | 62 sub sp,sp,#4*(16) @ off-load area 201 ldr r11,[sp,#4*(32+2)] @ load len 241 ldrhs r8,[r12],#16 @ load input 279 ldrhs r8,[r12],#16 @ load input 319 ldrhs r8,[r12],#16 @ load input 366 ldrhs r8,[r12],#16 @ load input 807 vld1.32 {q1,q2},[r3] @ load key 1155 ldr r8,[r12],#16 @ load input 1182 ldr r8,[r12],#16 @ load input 1210 ldr r8,[r12],#16 @ load input [all …]
|
| /freebsd-13.1/contrib/netbsd-tests/modules/ |
| H A D | t_modctl.c | 55 static int load(prop_dictionary_t, bool, const char *, ...); 298 ATF_CHECK(load(NULL, false, " ") == ENOENT); in ATF_TC_BODY() 299 ATF_CHECK(load(NULL, false, "non-existent.o") == ENOENT); in ATF_TC_BODY() 304 ATF_CHECK(load(NULL, false, "%s", longname) == ENAMETOOLONG); in ATF_TC_BODY() 307 load(NULL, true, "%s/k_helper/k_helper.kmod", in ATF_TC_BODY() 330 load(props, true, "%s/k_helper/k_helper.kmod", in ATF_TC_BODY() 345 load(props, true, "%s/k_helper/k_helper.kmod", in ATF_TC_BODY() 365 load(props, true, "%s/k_helper/k_helper.kmod", in ATF_TC_BODY() 404 load(props, true, "%s/k_helper/k_helper.kmod", in ATF_TC_BODY() 434 load(NULL, true, "%s/k_helper/k_helper.kmod", in ATF_TC_BODY() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430InstrInfo.td | 263 [(brind (load addr:$src))]>; 815 [(MSP430cmp (load addr:$dst), (i8 (load addr:$src))), 819 [(MSP430cmp (load addr:$dst), (i16 (load addr:$src))), 995 def : Pat<(addc GR16:$src, (load addr:$src2)), 1001 def : Pat<(store (addc (load addr:$dst), (i16 (load addr:$src))), addr:$dst), 1006 def : Pat<(addc GR8:$src, (load addr:$src2)), 1012 def : Pat<(store (addc (load addr:$dst), (i8 (load addr:$src))), addr:$dst), 1017 def : Pat<(subc GR16:$src, (load addr:$src2)), 1023 def : Pat<(store (subc (load addr:$dst), (i16 (load addr:$src))), addr:$dst), 1028 def : Pat<(subc GR8:$src, (load addr:$src2)), [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyInstrMemory.td | 61 // Basic load. 77 defm : LoadPatNoOffset<i32, load, "LOAD_I32">; 78 defm : LoadPatNoOffset<i64, load, "LOAD_I64">; 79 defm : LoadPatNoOffset<f32, load, "LOAD_F32">; 80 defm : LoadPatNoOffset<f64, load, "LOAD_F64">; 99 defm : LoadPatImmOff<i32, load, or_is_add, "LOAD_I32">; 114 defm : LoadPatOffsetOnly<i32, load, "LOAD_I32">; 115 defm : LoadPatOffsetOnly<i64, load, "LOAD_I64">; 116 defm : LoadPatOffsetOnly<f32, load, "LOAD_F32">; 117 defm : LoadPatOffsetOnly<f64, load, "LOAD_F64">; [all …]
|
| /freebsd-13.1/sys/dev/syscons/snake/ |
| H A D | snake_saver.c | 70 int f, color, load; in snake_saver() local 119 load = ((averunnable.ldavg[0] * 100 + FSCALE / 2) >> FSHIFT); in snake_saver() 120 if (load == 0) in snake_saver() 122 else if (load / mp_ncpus <= 50) in snake_saver() 124 else if (load / mp_ncpus <= 75) in snake_saver() 126 else if (load / mp_ncpus <= 99) in snake_saver()
|
| /freebsd-13.1/sys/contrib/openzfs/contrib/dracut/90zfs/ |
| H A D | zfs-load-key.sh.in | 48 …systemd-ask-password --no-tty "Encrypted ZFS password for ${BOOTFS}" | zfs load-key "${ENCRYPTIONR… 53 zfs load-key "${ENCRYPTIONROOT}" 66 zfs load-key "${ENCRYPTIONROOT}" 69 zfs load-key "${ENCRYPTIONROOT}"
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | OPENSSL_LH_stats.pod | 34 hash table. It prints the 'load' and the 'actual load'. The load is 36 'actual load' is the average number of items per 'bucket', but only 37 for buckets which contain entries. So the 'actual load' is the 39 table, while the 'load' is the average number that will be done to
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_rtl.cpp | 120 ASAN_REPORT_ERROR(load, false, 1) 121 ASAN_REPORT_ERROR(load, false, 2) 122 ASAN_REPORT_ERROR(load, false, 4) 123 ASAN_REPORT_ERROR(load, false, 8) 124 ASAN_REPORT_ERROR(load, false, 16) 148 ASAN_REPORT_ERROR_N(load, false) in ASAN_REPORT_ERROR_N() argument 177 ASAN_MEMORY_ACCESS_CALLBACK(load, false, 1) 178 ASAN_MEMORY_ACCESS_CALLBACK(load, false, 2) 179 ASAN_MEMORY_ACCESS_CALLBACK(load, false, 4) 180 ASAN_MEMORY_ACCESS_CALLBACK(load, false, 8) [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ManagedStatic.h | 87 void *Tmp = Ptr.load(std::memory_order_acquire); 91 return *static_cast<C *>(Ptr.load(std::memory_order_relaxed)); 97 void *Tmp = Ptr.load(std::memory_order_acquire); 101 return *static_cast<C *>(Ptr.load(std::memory_order_relaxed));
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/gpio/ |
| H A D | gpio-pisosr.txt | 15 - load-gpios : GPIO pin specifier attached to load enable, this 17 load input pin values into the the device. 29 load-gpios = <&gpio2 23 GPIO_ACTIVE_LOW>;
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/rtc/ |
| H A D | nxp,pcf8523.txt | 8 - quartz-load-femtofarads: The capacitive load of the quartz(x-tal), 17 quartz-load-femtofarads = <7000>;
|
| H A D | nxp,pcf85063.txt | 12 - quartz-load-femtofarads: The capacitive load of the quartz(x-tal), 21 quartz-load-femtofarads = <12500>;
|
| /freebsd-13.1/sys/contrib/openzfs/lib/libzfs/os/linux/ |
| H A D | libzfs_util_os.c | 107 int load = 0, fd; in libzfs_load_module_impl() local 116 load = 1; in libzfs_load_module_impl() 118 load = 0; in libzfs_load_module_impl() 121 if (load) { in libzfs_load_module_impl()
|
| /freebsd-13.1/sys/contrib/openzfs/config/ |
| H A D | user-systemd.m4 | 20 [install systemd module load files into dir [[/usr/lib/modules-load.d]]]), 21 systemdmodulesloaddir=$withval,systemdmodulesloaddir=/usr/lib/modules-load.d) 39 ZFS_MODULE_LOAD=modules-load.d
|
| /freebsd-13.1/sys/contrib/device-tree/src/mips/mscc/ |
| H A D | ocelot_pcb120.dts | 49 load-save-gpios = <&gpio 10 GPIO_ACTIVE_HIGH>; 55 load-save-gpios = <&gpio 10 GPIO_ACTIVE_HIGH>; 61 load-save-gpios = <&gpio 10 GPIO_ACTIVE_HIGH>; 67 load-save-gpios = <&gpio 10 GPIO_ACTIVE_HIGH>;
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/media/i2c/ |
| H A D | max2175.txt | 22 - maxim,refout-load : load capacitance value (in picofarads) on reference 23 output drive level. The possible load values are: 51 maxim,refout-load = <10>;
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | msm8998-clamshell.dtsi | 140 regulator-allow-set-load; 153 regulator-allow-set-load; 158 regulator-allow-set-load; 175 regulator-allow-set-load; 216 regulator-allow-set-load; 229 regulator-allow-set-load; 234 regulator-allow-set-load; 235 regulator-system-load = <800000>; 252 regulator-allow-set-load;
|
| /freebsd-13.1/contrib/netbsd-tests/modules/k_helper3/ |
| H A D | k_helper3.c | 45 static int load(const char *, ...); 55 return load(argv[1], argv[2]); in main() 59 load(const char *fmt, ...) in load() function
|
| /freebsd-13.1/stand/lua/ |
| H A D | config.lua | 258 modules[k].load = v:upper() 360 if v.load ~= nil and v.load:lower() == "yes" then 707 function config.load(file, reloading) function 727 config.load(file, true) 758 elseif modules[modname].load == "YES" then 763 modules[modname].load = "YES" 771 elseif modules[modname].load ~= "YES" then 775 modules[modname].load = "NO" 782 if not mod or mod.load ~= "YES" then
|