| /linux/lib/zstd/common/ |
| H A D | zstd_internal.h | 47 #undef MAX 49 #define MAX(a,b) ((a)>(b) ? (a) : (b)) macro 50 #define BOUNDED(min,val,max) (MAX(min,MIN(val,max))) 101 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */ 105 #define MaxFSELog MAX(MAX(MLFSELog, LLFSELog), OffFSELog)
|
| /linux/Documentation/hwmon/ |
| H A D | intel-m10-bmc-hwmon.rst | 8 * Intel MAX 10 BMC for Intel PAC N3000 19 support for the Intel MAX 10 Board Management Controller (BMC) chip. 27 The BMC chip is implemented using the Intel MAX 10 CPLD. It could be 38 - Intel MAX 10 BMC for Intel PAC N3000:
|
| /linux/tools/testing/selftests/power_supply/ |
| H A D | helpers.sh | 92 MAX=$3 100 if [ "$DATA" -lt "$MIN" ] || [ "$DATA" -gt "$MAX" ]; then 101 ktap_print_msg "'$DATA' is out of range (min=$MIN, max=$MAX)"
|
| /linux/drivers/comedi/drivers/ni_routing/ |
| H A D | README | 34 information is through the proprietary NI-MAX software, which currently only 36 cannot be exported from NI-MAX, except by screenshot. 50 the proprietary NI-MAX software, and (d) the user interface code provided by 98 Windows software, NI-MAX. Also, as noted above, this information can 99 only be visually conveyed from NI-MAX to other media. To make this 101 similar to the naming conventions as presented by NI-MAX. 121 software, NI-MAX. Also, as noted above, this information can only be 122 visually conveyed from NI-MAX to other media. This make target creates 125 visual comparison to the NI-MAX "Valid Routes" tables.
|
| /linux/rust/kernel/ |
| H A D | maple_tree.rs | 66 Bound::Unbounded => usize::MAX, in to_maple_range() 263 let mut ma_state = unsafe { MaState::new_raw(self.into_ref().get_ref(), 0, usize::MAX) }; in free_all_entries() 276 ma_state.mas_find_raw(usize::MAX) in free_all_entries() 523 max: usize::MAX, in new_raw()
|
| H A D | xarray.rs | 110 bindings::xa_find(self.xa.get(), &mut index, usize::MAX, bindings::XA_PRESENT) in iter() 115 bindings::xa_find_after(self.xa.get(), &mut index, usize::MAX, bindings::XA_PRESENT) in iter()
|
| H A D | scatterlist.rs | 357 0 => u32::MAX, in new() 358 max_segment => u32::try_from(max_segment).unwrap_or(u32::MAX), in new()
|
| /linux/tools/testing/selftests/filesystems/fuse/ |
| H A D | fuse_mnt.c | 17 #define MAX(a, b) ((a) > (b) ? (a) : (b)) macro 95 new_size = MAX(offset + size, content_size); in test_write()
|
| /linux/tools/testing/selftests/mm/ |
| H A D | hugetlb-read-hwpoison.c | 20 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) macro 222 len / 2 + MAX(2 * pagesize, wr_chunk_size), in test_hugetlb_read_hwpoison() 223 len / 2 - MAX(2 * pagesize, wr_chunk_size))) in test_hugetlb_read_hwpoison()
|
| /linux/tools/perf/util/ |
| H A D | expr.y | 44 %token ID NUMBER MIN MAX IF ELSE LITERAL D_RATIO SOURCE_COUNT HAS_EVENT STRCMP_CPUID_STR EXPR_ERROR 45 %left MIN MAX IF 365 | MAX '(' expr ',' expr ')'
|
| /linux/drivers/pwm/ |
| H A D | pwm_th1520.rs | 67 None => u64::MAX, in ns_to_cycles() 140 let mut period_cycles = ns_to_cycles(wf.period_length_ns, rate_hz).min(u64::from(u32::MAX)); in round_waveform_tohw() 154 let mut duty_cycles = ns_to_cycles(wf.duty_length_ns, rate_hz).min(u64::from(u32::MAX)); in round_waveform_tohw()
|
| /linux/tools/memory-model/Documentation/ |
| H A D | control-dependencies.txt | 124 if (q % MAX) { 132 If MAX is compile-time defined to be 1, then the compiler knows that 133 (q % MAX) must be equal to zero, regardless of the value of "q". 146 make sure that MAX is greater than one, perhaps as follows: 149 BUILD_BUG_ON(MAX <= 1); /* Order load from a with store to b. */ 150 if (q % MAX) {
|
| /linux/rust/kernel/time/ |
| H A D | delay.rs | 33 const MAX_DELTA: Delta = Delta::from_micros(i32::MAX as i64); in fsleep()
|
| /linux/arch/parisc/boot/compressed/ |
| H A D | vmlinux.lds.S | 52 . = MAX(ABSOLUTE(.), (SZ_end - SZparisc_kernel_start + KERNEL_BINARY_TEXT_START));
|
| /linux/Documentation/driver-api/mtd/ |
| H A D | spi-intel.rst | 25 Below are the steps how to upgrade MinnowBoard MAX BIOS directly from 28 1) Download and extract the latest Minnowboard MAX BIOS SPI image
|
| /linux/tools/testing/selftests/seccomp/ |
| H A D | seccomp_benchmark.c | 88 one_bump = one + MAX(one_bump, 2.0); in approx() 89 two_bump = two + MAX(two_bump, 2.0); in approx()
|
| /linux/arch/powerpc/perf/ |
| H A D | e6500-pmu.c | 35 static int e6500_cache_events[C(MAX)][C(OP_MAX)][C(RESULT_MAX)] = {
|
| H A D | e500-pmu.c | 34 static int e500_cache_events[C(MAX)][C(OP_MAX)][C(RESULT_MAX)] = {
|
| /linux/include/net/ |
| H A D | rstreason.h | 34 FNe(MAX)
|
| /linux/Documentation/translations/ko_KR/ |
| H A D | memory-barriers.txt | 807 if (q % MAX) { 815 만약 MAX 가 1 로 정의된 상수라면, 컴파일러는 (q % MAX) 는 0이란 것을 알아채고, 825 따라서, 이 순서를 지켜야 한다면, MAX 가 1 보다 크다는 것을, 다음과 같은 방법을 829 BUILD_BUG_ON(MAX <= 1); /* Order load from a with store to b. */ 830 if (q % MAX) { 1622 기억하세요. 예를 들어, 다음의 코드에서 MAX 는 전처리기 매크로로, 1의 값을 1625 while ((tmp = READ_ONCE(a)) % MAX) 1628 이렇게 되면 컴파일러는 MAX 를 가지고 수행되는 "%" 오퍼레이터의 결과가 항상
|
| /linux/drivers/clk/at91/ |
| H A D | pmc.h | 40 #define CLK_RANGE(MIN, MAX) {.min = MIN, .max = MAX,} argument
|
| /linux/include/linux/ |
| H A D | blk-crypto.h | 58 MAX(BLK_CRYPTO_MAX_RAW_KEY_SIZE, BLK_CRYPTO_MAX_HW_WRAPPED_KEY_SIZE)
|
| /linux/drivers/infiniband/hw/usnic/ |
| H A D | usnic_vnic.h | 48 DEFINE_USNIC_VNIC_RES(MAX, RES_TYPE_MAX, "MAX")\
|
| /linux/include/uapi/linux/ |
| H A D | cxl_mem.h | 53 ___C(MAX, "invalid / last command")
|
| /linux/drivers/media/dvb-frontends/ |
| H A D | stv0367_priv.h | 29 #define MAX(X, Y) ((X) >= (Y) ? (X) : (Y)) macro
|