Home
last modified time | relevance | path

Searched full:prime (Results 1 – 25 of 155) sorted by relevance

1234567

/linux/include/linux/
H A Dprime_numbers.h11 * for_each_prime_number - iterate over each prime upto a value
12 * @prime: the current prime number in this iteration
15 * Starting from the first prime number 2 iterate over each prime number up to
16 * the @max value. On each iteration, @prime is set to the current prime number.
18 * @prime set to 1 on the first iteration use for_each_prime_number_from()
21 #define for_each_prime_number(prime, max) \ argument
22 for_each_prime_number_from((prime), 2, (max))
25 * for_each_prime_number_from - iterate over each prime upto a value
26 * @prime: the current prime number in this iteration
30 * Starting from @from iterate over each successive prime number up to the
[all …]
/linux/drivers/hwmon/
H A Dnct6775-platform.c1097 "PRIME A520M-A",
1098 "PRIME A520M-A II",
1099 "PRIME A520M-E",
1100 "PRIME A520M-K",
1101 "PRIME B360-PLUS",
1102 "PRIME B360M-A",
1103 "PRIME B360M-C",
1104 "PRIME B360M-D",
1105 "PRIME B360M-K",
1106 "PRIME B460-PLUS",
[all …]
/linux/drivers/gpu/drm/vmwgfx/
H A Dttm_object.c31 * While no substantial code is shared, the prime code is inspired by
478 * ttm_prime_refcount_release - refcount release method for a prime object.
483 * underlying object. At the same time it cleans up the prime object.
490 struct ttm_prime_object *prime; in ttm_prime_refcount_release() local
493 prime = container_of(base, struct ttm_prime_object, base); in ttm_prime_refcount_release()
494 BUG_ON(prime->dma_buf != NULL); in ttm_prime_refcount_release()
495 mutex_destroy(&prime->mutex); in ttm_prime_refcount_release()
496 if (prime->refcount_release) in ttm_prime_refcount_release()
497 prime->refcount_release(&base); in ttm_prime_refcount_release()
512 struct ttm_prime_object *prime = in ttm_prime_dmabuf_release() local
[all …]
H A Dttm_object.h114 * struct ttm_prime_object - Modified base object that is prime-aware
263 * @ops: DMA buf ops for prime objects of this device.
290 struct ttm_prime_object *prime,
/linux/drivers/crypto/caam/
H A Dcaampkc.h27 * p the first prime factor of the RSA modulus n
28 * q the second prime factor of the RSA modulus n
33 * p the first prime factor of the RSA modulus n
34 * q the second prime factor of the RSA modulus n
53 * @p : RSA prime factor p of RSA modulus n
54 * @q : RSA prime factor q of RSA modulus n
65 * @p_sz : length in bytes of RSA prime factor p of RSA modulus n
66 * @q_sz : length in bytes of RSA prime factor q of RSA modulus n
H A Dpdb.h543 * @p_dma : dma address of RSA prime factor p of RSA modulus n
544 * @q_dma : dma address of RSA prime factor q of RSA modulus n
549 * @p_q_len : length in bytes of first two prime factors of the RSA modulus n
567 * This is the RSA Chinese Reminder Theorem (CRT) form for two prime factors of
573 * @p_dma : dma address of RSA prime factor p of RSA modulus n
574 * @q_dma : dma address of RSA prime factor q of RSA modulus n
575 * @dp_dma : dma address of RSA CRT exponent of RSA prime factor p
576 * @dp_dma : dma address of RSA CRT exponent of RSA prime factor q
581 * @p_q_len : length in bytes of first two prime factors of the RSA modulus n
/linux/arch/arm/boot/dts/samsung/
H A Dexynos4412-prime.dtsi3 * Samsung's Exynos4412 Prime SoC device tree source
10 * Exynos4412 Prime SoC revision supports higher CPU frequencies than
11 * non-Prime version. Therefore we need to update OPPs table and
/linux/Documentation/hwmon/
H A Dasus_wmi_sensors.rst7 * PRIME X399-A,
8 * PRIME X470-PRO,
71 getting stuck. This is not an issue with the driver, but the BIOS. The Prime
/linux/lib/math/
H A DKconfig9 tristate "Simple prime number generator for testing"
11 This option provides a simple prime number generator for test
/linux/tools/testing/selftests/powerpc/math/
H A Dmma.S13 /* Clear and prime the accumulator (xxsetaccz) */
16 /* Prime the accumulator with MMA VSX move to accumulator
/linux/drivers/usb/typec/ucsi/
H A Dtrace.c39 [UCSI_RECIPIENT_SOP_P] = "plug (prime)",
40 [UCSI_RECIPIENT_SOP_PP] = "plug (double prime)",
/linux/Documentation/driver-api/usb/
H A Dtypec.rst41 will be named port0-cable and the plug on the SOP Prime end (see USB Power
43 Double Prime end "port0-plug1". The parent of a cable will always be the port,
104 and one or two plugs, depending if there is CC Double Prime controller present
105 in the cable or not. So a cable capable of SOP Prime communication, but not SOP
106 Double Prime communication, should only have one plug registered. For more
H A Dtypec_bus.rst86 requires, a cable that responds to SOP Prime, and optionally SOP Double Prime
/linux/Documentation/gpu/
H A Ddrm-mm.rst230 PRIME. GEM-based drivers must use the provided helpers functions to
235 Furthermore PRIME also allows cross-device buffer sharing since it is
417 PRIME Buffer Sharing
420 PRIME is the cross device buffer sharing framework in drm, originally
421 created for the OPTIMUS range of multi-gpu platforms. To userspace PRIME
430 PRIME Helper Functions
434 :doc: PRIME Helpers
436 PRIME Function References
/linux/arch/mips/sgi-ip22/
H A Dip22-time.c84 dosample(); /* Prime cache. */ in plat_time_init()
85 dosample(); /* Prime cache. */ in plat_time_init()
/linux/tools/testing/selftests/net/forwarding/
H A Dmirror_gre_vlan_bridge_1q.sh155 # Run the pass-test first, to prime neighbor table.
198 # Re-prime FDB
292 # Re-prime FDB
/linux/drivers/gpu/drm/i915/selftests/
H A Di915_gem_gtt.c420 unsigned long npages, prime, flags; in fill_hole() local
431 for_each_prime_number_from(prime, 2, max_step) { in fill_hole()
432 for (npages = 1; npages <= max_pages; npages *= prime) { in fill_hole()
475 pr_err("%s(%s) pin (forward) failed with err=%d on size=%lu pages (prime=%lu), offset=%llx\n", in fill_hole()
476 __func__, p->name, err, npages, prime, offset); in fill_hole()
554 … pr_err("%s(%s) pin (backward) failed with err=%d on size=%lu pages (prime=%lu), offset=%llx\n", in fill_hole()
555 __func__, p->name, err, npages, prime, offset); in fill_hole()
617 if (igt_timeout(end_time, "%s timed out (npages=%lu, prime=%lu)\n", in fill_hole()
618 __func__, npages, prime)) { in fill_hole()
986 unsigned long prime; in shrink_hole() local
[all …]
/linux/arch/powerpc/include/asm/book3s/64/
H A Dmmu-hash.h553 * VSID_MULTIPLIER is prime, so in particular it is
554 * co-prime to VSID_MODULUS, making this a 1:1 scrambling function.
628 * co-prime to vsid_modulus. We also need to make sure that number
634 * | | Prime Bits | proto VSID_BITS_65VA | Total Bits | 2* prot VSID_BITS |
642 * | | Prime Bits | proto VSID_BITS_68VA | Total Bits | 2* proto VSID_BITS |
650 #define VSID_MULTIPLIER_256M ASM_CONST(12538073) /* 24-bit prime */
658 #define VSID_MULTIPLIER_1T ASM_CONST(12538073) /* 24-bit prime */
/linux/arch/mips/sni/
H A Dtime.c128 dosample(); /* Prime cache. */ in plat_time_init()
129 dosample(); /* Prime cache. */ in plat_time_init()
/linux/drivers/gpu/drm/ci/xfails/
H A Dpanfrost-rk3288-fails.txt1 panfrost/panfrost_prime@gem-prime-import,Crash
H A Dpanfrost-mt8183-fails.txt1 panfrost/panfrost_prime@gem-prime-import,Fail
H A Dpanfrost-rk3399-fails.txt1 panfrost/panfrost_prime@gem-prime-import,Fail
H A Dpanfrost-g12b-fails.txt1 panfrost/panfrost_prime@gem-prime-import,Fail
/linux/tools/testing/selftests/lib/
H A Dprime_numbers.sh
/linux/arch/arm64/boot/dts/qcom/
H A Dmsm8216-samsung-fortuna3g.dts8 model = "Samsung Galaxy Grand Prime (SM-G530H)";

1234567