| /f-stack/app/redis-5.0.5/deps/jemalloc/test/unit/ |
| H A D | prng.c | 141 uint32_t range; in test_prng_range_u32() local 146 for (range = 2; range < MAX_RANGE; range += RANGE_STEP) { in test_prng_range_u32() 154 assert_u32_lt(r, range, "Out of range"); in test_prng_range_u32() 161 uint64_t range; in test_prng_range_u64() local 166 for (range = 2; range < MAX_RANGE; range += RANGE_STEP) { in test_prng_range_u64() 170 s = range; in test_prng_range_u64() 172 uint64_t r = prng_range_u64(&s, range); in test_prng_range_u64() 174 assert_u64_lt(r, range, "Out of range"); in test_prng_range_u64() 181 size_t range; in test_prng_range_zu() local 186 for (range = 2; range < MAX_RANGE; range += RANGE_STEP) { in test_prng_range_zu() [all …]
|
| /f-stack/app/nginx-1.16.1/src/stream/ |
| H A D | ngx_stream_geo_module.c | 297 if (range) { in ngx_stream_geo_range_variable() 793 ngx_memmove(&range[i + 2], &range[i + 1], in ngx_stream_geo_add_range() 832 ngx_memmove(&range[i + 3], &range[i + 1], in ngx_stream_geo_add_range() 836 range[i + 2].end = range[i].end; in ngx_stream_geo_add_range() 837 range[i + 2].value = range[i].value; in ngx_stream_geo_add_range() 860 ngx_memmove(&range[i + 1], &range[i], in ngx_stream_geo_add_range() 884 ngx_memmove(&range[i + 2], &range[i + 1], in ngx_stream_geo_add_range() 917 ngx_memmove(&range[1], &range[0], in ngx_stream_geo_add_range() 976 ngx_memmove(&range[i], &range[i + 1], in ngx_stream_geo_delete_range() 1466 range++; in ngx_stream_geo_include_binary_base() [all …]
|
| /f-stack/app/nginx-1.16.1/src/http/modules/ |
| H A D | ngx_http_geo_module.c | 306 if (range) { in ngx_http_geo_range_variable() 843 ngx_memmove(&range[i + 2], &range[i + 1], in ngx_http_geo_add_range() 882 ngx_memmove(&range[i + 3], &range[i + 1], in ngx_http_geo_add_range() 886 range[i + 2].end = range[i].end; in ngx_http_geo_add_range() 887 range[i + 2].value = range[i].value; in ngx_http_geo_add_range() 910 ngx_memmove(&range[i + 1], &range[i], in ngx_http_geo_add_range() 934 ngx_memmove(&range[i + 2], &range[i + 1], in ngx_http_geo_add_range() 967 ngx_memmove(&range[1], &range[0], in ngx_http_geo_add_range() 1026 ngx_memmove(&range[i], &range[i + 1], in ngx_http_geo_delete_range() 1538 range++; in ngx_http_geo_include_binary_base() [all …]
|
| H A D | ngx_http_range_filter_module.c | 378 range->end = end; in ngx_http_range_parse() 416 ngx_http_range_t *range; in ngx_http_range_singlepart_header() local 442 range = ctx->ranges.elts; in ngx_http_range_singlepart_header() 446 range->start, range->end - 1, in ngx_http_range_singlepart_header() 450 r->headers_out.content_length_n = range->end - range->start; in ngx_http_range_singlepart_header() 566 range[i].content_range.len = ngx_sprintf(range[i].content_range.data, in ngx_http_range_multipart_header() 568 range[i].start, range[i].end - 1, in ngx_http_range_multipart_header() 573 + (range[i].end - range[i].start); in ngx_http_range_multipart_header() 679 if (start > range[i].start || last < range[i].end) { in ngx_http_range_test_overlapped() 729 if (range->end <= start || range->start >= last) { in ngx_http_range_singlepart_body() [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/iio/dac/ |
| H A D | ad5758.txt | 36 - adi,range-microvolt: Voltage output range 38 * <0 5000000>: 0 V to 5 V voltage range 39 * <0 10000000>: 0 V to 10 V voltage range 40 * <(-5000000) 5000000>: ±5 V voltage range 42 - adi,range-microamp: Current output range 44 * <0 20000>: 0 mA to 20 mA current range 45 * <0 24000>: 0 mA to 24 mA current range 46 * <4 24000>: 4 mA to 20 mA current range 47 * <(-20000) 20000>: ±20 mA current range 48 * <(-24000) 24000>: ±24 mA current range [all …]
|
| H A D | adi,ad5770r.yaml | 63 adi,range-microamp: 64 description: Output range of the channel. 86 adi,range-microamp: 87 description: Output range of the channel. 102 adi,range-microamp: 103 description: Output range of the channel. 118 adi,range-microamp: 119 description: Output range of the channel. 161 adi,range-microamp = <0 55000>; 166 adi,range-microamp = <0 45000>; [all …]
|
| H A D | ad5755.txt | 48 0: 0 V to 5 V voltage range. 49 1: 0 V to 10 V voltage range. 50 2: Plus minus 5 V voltage range. 51 3: Plus minus 10 V voltage range. 52 4: 4 mA to 20 mA current range. 53 5: 0 mA to 20 mA current range. 54 6: 0 mA to 24 mA current range.
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/ |
| H A D | prng.h | 136 assert(range > 1); in prng_range_u32() 139 lg_range = ffs_u32(pow2_ceil_u32(range)) - 1; in prng_range_u32() 144 } while (ret >= range); in prng_range_u32() 150 prng_range_u64(uint64_t *state, uint64_t range) { in prng_range_u64() argument 154 assert(range > 1); in prng_range_u64() 157 lg_range = ffs_u64(pow2_ceil_u64(range)) - 1; in prng_range_u64() 162 } while (ret >= range); in prng_range_u64() 168 prng_range_zu(atomic_zu_t *state, size_t range, bool atomic) { in prng_range_zu() argument 172 assert(range > 1); in prng_range_zu() 175 lg_range = ffs_u64(pow2_ceil_u64(range)) - 1; in prng_range_zu() [all …]
|
| /f-stack/dpdk/devtools/ |
| H A D | check-git-log.sh | 12 usage: $(basename $0) [-h] [-nX|-r range] 17 range specified with -r option. 19 If no range provided, default is origin/main..HEAD. 30 range=${1:-origin/main..} 32 if [ "$range" = '--help' ] ; then 37 range="HEAD$(printf -- "$range" | sed 's,^-,~,').." 41 n ) range="HEAD~$OPTARG.." ;; 42 r ) range=$OPTARG ;; 50 commits=$(git log --format='%h' --reverse $range) 51 headlines=$(git log --format='%s' --reverse $range) [all …]
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/ |
| H A D | zfs_destroy_016_pos.ksh | 105 range="1 2 3" 107 range="4 5" 114 range="2 3 4" 118 range="1 5" 125 range="1 2" 127 range="3 4 5" 134 range="2 4" 136 range="1 3 5" 143 range="1 2 3 5" 145 range=4 [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | dmu_send.c | 236 cv_wait(&range->sru.data.cv, &range->sru.data.lock); in range_free() 248 kmem_free(range, sizeof (*range)); in range_free() 1580 range = kmem_zalloc(sizeof (*range), KM_SLEEP); in send_merge_thread() 1762 range = get_next_range_nofree(inq, range); in send_reader_thread() 1768 bqueue_enqueue(outq, range, sizeof (*range)); in send_reader_thread() 1769 range = get_next_range_nofree(inq, range); in send_reader_thread() 1822 range = get_next_range(inq, range); in send_reader_thread() 1881 range = get_next_range(inq, range); in send_reader_thread() 1892 range = get_next_range(inq, range); in send_reader_thread() 2536 range = get_next_range(&srt_arg->q, range); in dmu_send_impl() [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/pinctrl/ |
| H A D | pinctrl-single.txt | 78 number in this range, GPIO function value of this GPIO range. 83 pinctrl-single,gpio-range = <&range 0 3 0 &range 3 9 1>; 120 by pinctrl-single,gpio-range property. 124 pinctrl-single,gpio-range property. 126 range: gpio-range { 127 #pinctrl-single,gpio-range-cells = <3>; 181 pinctrl-single,gpio-range = <&range 0 3 0 &range 3 9 1 182 &range 12 1 0 &range 13 29 1 183 &range 43 1 0 &range 44 49 1 184 &range 94 1 1 &range 96 2 1>; [all …]
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | t_zset.c | 315 if (range->min > range->max || in zslIsInRange() 316 (range->min == range->max && (range->minex || range->maxex))) in zslIsInRange() 401 (range->maxex ? x->score < range->max : x->score <= range->max)) in zslDeleteRangeByScore() 655 int cmp = sdscmplex(range->min,range->max); in zslIsInLexRange() 656 if (cmp > 0 || (cmp == 0 && (range->minex || range->maxex))) in zslIsInLexRange() 829 if (range->min > range->max || in zzlIsInRange() 830 (range->min == range->max && (range->minex || range->maxex))) in zzlIsInRange() 929 int cmp = sdscmplex(range->min,range->max); in zzlIsInLexRange() 930 if (cmp > 0 || (cmp == 0 && (range->minex || range->maxex))) in zzlIsInLexRange() 1699 zrangespec range; in zremrangeGenericCommand() local [all …]
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/hisilicon/ |
| H A D | hi3798cv200.dtsi | 184 &range 9 4 2 185 &range 13 1 0 186 &range 14 1 1 187 &range 15 1 0 189 &range 21 3 1 191 &range 28 2 2 192 &range 86 1 1 193 &range 87 1 0 195 &range 34 3 0 196 &range 37 1 2 [all …]
|
| H A D | hikey970-pinctrl.dtsi | 10 range: gpio-range { label 11 #pinctrl-single,gpio-range-cells = <3>; 18 #gpio-range-cells = <0x3>; 22 pinctrl-single,gpio-range = <&range 0 82 0>; 192 #gpio-range-cells = <3>; 197 pinctrl-single,gpio-range = <&range 0 10 0>; 267 #gpio-range-cells = <3>; 272 pinctrl-single,gpio-range = <&range 0 12 0>; 344 #gpio-range-cells = <0x3>; 349 pinctrl-single,gpio-range = <&range 0 46 0>;
|
| H A D | hi6220.dtsi | 410 #gpio-range-cells = <3>; 413 pinctrl-single,gpio-range = < 414 &range 80 8 MUX_M0 /* gpio 3: [0..7] */ 415 &range 88 8 MUX_M0 /* gpio 4: [0..7] */ 416 &range 96 8 MUX_M0 /* gpio 5: [0..7] */ 417 &range 104 8 MUX_M0 /* gpio 6: [0..7] */ 418 &range 112 8 MUX_M0 /* gpio 7: [0..7] */ 419 &range 120 2 MUX_M0 /* gpio 8: [0..1] */ 420 &range 2 6 MUX_M1 /* gpio 8: [2..7] */ 438 range: gpio-range { label [all …]
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/ |
| H A D | redacted_resume.ksh | 56 typeset range=$(cat $tmpdir/get_diff.out) 57 [[ "$RANGE9" = "$range" ]] || log_fail "Unexpected range: $range" 73 range=$(cat $tmpdir/get_diff.out) 74 [[ "$RANGE10" = "$range" ]] || log_fail "Unexpected range: $range"
|
| /f-stack/freebsd/contrib/device-tree/Bindings/power/supply/ |
| H A D | qcom_smbb.txt | 45 Value type: <u32>; uA; range [100mA : 3A] 50 Value type: <u32>; uV; range [2.1V : 3.6V] 57 Value type: <u32>; uV; range [3.24V : 5V] 64 Value type: <u32>; uV; range [3.24V : 5V] 71 Value type: <u32>; uA; range [100mA : 3A] 78 Value type: <u32>; uV; range [3.24V : 5V] 85 Value type: <u32>; uV; range [4.2V : 9.6V] 90 Value type: <u32>; uA; range [100mA : 2.5A] 98 - qcom,jeita-extended-temp-range: 101 Description: Enable JEITA extended temperature range; This does *not* [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | ti,sci-inta.txt | 28 AM654 SoC). Driver should request the system controller to get the range 47 - ti,sci-rm-range-vint: Array of TISCI subtype ids representing vints(inta 48 outputs) range within this INTA, assigned to the 50 - ti,sci-rm-range-global-event: Array of TISCI subtype ids representing the 51 global events range reaching this IA and are assigned 64 ti,sci-rm-range-vint = <0x0>; 65 ti,sci-rm-range-global-event = <0x1>;
|
| /f-stack/freebsd/contrib/device-tree/Bindings/hwmon/ |
| H A D | ti,tmp513.yaml | 46 The PGA gain affect the shunt voltage range. 47 The range will be equal to: pga-gain * 40mV 52 ti,bus-range-microvolt: 54 This is the operating range of the bus voltage in microvolt 63 See datasheet Table 11 for n-Factor range list and value interpretation. 88 ti,bus-range-microvolt = <32000000>;
|
| /f-stack/freebsd/contrib/openzfs/cmd/zinject/ |
| H A D | translate.c | 152 initialize_range(err_type_t type, int level, char *range, in initialize_range() argument 158 if (range == NULL) { in initialize_range() 170 record->zi_start = strtoull(range, &end, 10); in initialize_range() 181 range); in initialize_range() 199 if (range != NULL) { in initialize_range() 217 translate_record(err_type_t type, const char *object, const char *range, in translate_record() argument 285 if (initialize_range(type, level, (char *)range, record) != 0) in translate_record()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/sound/ |
| H A D | max9892x.txt | 15 MAX98925/MAX98926 slot range : 0 ~ 30, Default : 0 16 MAX98927 slot range : 0 ~ 15, Default : 0 19 MAX98925/MAX98926 slot range : 0 ~ 30, Default : 0 20 MAX98927 slot range : 0 ~ 15, Default : 0
|
| /f-stack/freebsd/contrib/device-tree/Bindings/leds/ |
| H A D | ams,as3645a.txt | 8 and b are included in the range. 27 the range [100000, 850000] and divisible by 50000. 29 in the range between [200000, 500000] and 32 value must be in the range between [20000, 160000] and 35 value must be in the range [1250000, 2000000]
|
| /f-stack/freebsd/contrib/openzfs/config/ |
| H A D | kernel-fsync.m4 | 44 AC_MSG_CHECKING([whether fops->fsync() wants range]) 46 AC_MSG_RESULT([range]) 48 [fops->fsync() with range])
|
| /f-stack/freebsd/contrib/zlib/doc/ |
| H A D | txtvsbin.txt | 17 found in a certain buffer are within the range [7..127], the file is 21 the bytes within the range [128..255], and texts using these alphabets 59 The first observation is that, although the full range of 7-bit codes 61 characters in the range [0..31] are not used in practice. The only 64 recognized on a reduced range of platforms and text viewers/editors: 72 detection schemes observe the presence of non-ASCII codes from the range 73 [128..255], the precision rarely has to suffer if this upper range is 75 contain both control characters and codes from the upper range. On the 76 other hand, the upper range needs to be labeled as textual, because it 77 is used by virtually all ASCII extensions. In particular, this range is
|