Searched refs:cond (Results 76 - 100 of 274) sorted by relevance

1234567891011

/linux-master/certs/
H A Dextract-cert.c69 #define ERR(cond, fmt, ...) \
71 bool __cond = (cond); \
/linux-master/drivers/dma/
H A Dpl330.c608 static inline u32 _emit_LD(unsigned dry_run, u8 buf[], enum pl330_cond cond) argument
615 if (cond == SINGLE)
617 else if (cond == BURST)
621 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'));
627 enum pl330_cond cond, u8 peri)
634 if (cond == BURST)
642 cond == SINGLE ? 'S' : 'B', peri >> 3);
667 enum pl330_cond cond; member in struct:_arg_LPEND
676 enum pl330_cond cond local
626 _emit_LDP(unsigned dry_run, u8 buf[], enum pl330_cond cond, u8 peri) argument
765 _emit_ST(unsigned dry_run, u8 buf[], enum pl330_cond cond) argument
783 _emit_STP(unsigned dry_run, u8 buf[], enum pl330_cond cond, u8 peri) argument
804 _emit_WFP(unsigned dry_run, u8 buf[], enum pl330_cond cond, u8 peri) argument
1119 _emit_load(unsigned int dry_run, u8 buf[], enum pl330_cond cond, enum dma_transfer_direction direction, u8 peri) argument
1152 _emit_store(unsigned int dry_run, u8 buf[], enum pl330_cond cond, enum dma_transfer_direction direction, u8 peri) argument
1185 _ldst_peripheral(struct pl330_dmac *pl330, unsigned dry_run, u8 buf[], const struct _xfer_spec *pxs, int cyc, enum pl330_cond cond) argument
1213 enum pl330_cond cond = BRST_LEN(pxs->ccr) > 1 ? BURST : SINGLE; local
[all...]
/linux-master/include/uapi/linux/
H A Dblkzoned.h92 * @cond: see enum blk_zone_cond for possible values
111 __u8 cond; /* Zone condition */ member in struct:blk_zone
/linux-master/kernel/locking/
H A Dspinlock_debug.c81 #define SPIN_BUG_ON(cond, lock, msg) if (unlikely(cond)) spin_bug(lock, msg)
157 #define RWLOCK_BUG_ON(cond, lock, msg) if (unlikely(cond)) rwlock_bug(lock, msg)
/linux-master/include/linux/
H A Dkernel.h48 #define PTR_IF(cond, ptr) ((cond) ? (ptr) : NULL)
156 #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
H A Dhashtable.h176 #define hash_for_each_possible_rcu(name, obj, member, key, cond...) \
178 member, ## cond)
/linux-master/sound/soc/intel/catpt/
H A Dregisters.h162 #define catpt_readl_poll_shim(cdev, reg, val, cond, delay_us, timeout_us) \
164 val, cond, delay_us, timeout_us)
174 #define catpt_readl_poll_pci(cdev, reg, val, cond, delay_us, timeout_us) \
176 val, cond, delay_us, timeout_us)
/linux-master/security/apparmor/
H A Ddomain.c133 struct path_cond cond = { }; local
158 *perms = *(aa_lookup_fperms(rules->file, state, &cond));
196 struct path_cond cond = { }; local
213 tmp = *(aa_lookup_fperms(rules->file, state, &cond));
222 tmp = *(aa_lookup_fperms(rules->file, state, &cond));
634 char *buffer, struct path_cond *cond,
675 state = aa_str_perms(rules->file, state, name, cond, &perms);
724 cond->uid, info, error);
736 char *buffer, struct path_cond *cond,
774 state = aa_str_perms(rules->file, state, xname, cond,
631 profile_transition(const struct cred *subj_cred, struct aa_profile *profile, const struct linux_binprm *bprm, char *buffer, struct path_cond *cond, bool *secure_exec) argument
733 profile_onexec(const struct cred *subj_cred, struct aa_profile *profile, struct aa_label *onexec, bool stack, const struct linux_binprm *bprm, char *buffer, struct path_cond *cond, bool *secure_exec) argument
809 handle_onexec(const struct cred *subj_cred, struct aa_label *label, struct aa_label *onexec, bool stack, const struct linux_binprm *bprm, char *buffer, struct path_cond *cond, bool *unsafe) argument
885 struct path_cond cond = { local
[all...]
/linux-master/tools/tracing/latency/
H A Dlatency-collector.c193 pthread_cond_t cond; member in struct:print_state
226 pthread_cond_t cond; member in struct:queue
339 static __always_inline void cond_signal(pthread_cond_t *cond) argument
341 errno = pthread_cond_signal(cond);
346 static __always_inline void cond_wait(pthread_cond_t *restrict cond, argument
349 errno = pthread_cond_wait(cond, mutex);
354 static __always_inline void cond_broadcast(pthread_cond_t *cond) argument
356 errno = pthread_cond_broadcast(cond);
414 static __always_inline void cond_init(pthread_cond_t *cond, argument
417 errno = pthread_cond_init(cond, att
423 cond_timedwait(pthread_cond_t *restrict cond, pthread_mutex_t *restrict mutex, const struct timespec *restrict abstime) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dinit.c479 init_condition_met(struct nvbios_init *init, u8 cond) argument
484 u32 reg = nvbios_rd32(bios, table + (cond * 12) + 0);
485 u32 msk = nvbios_rd32(bios, table + (cond * 12) + 4);
486 u32 val = nvbios_rd32(bios, table + (cond * 12) + 8);
488 cond, reg, msk, val);
495 init_io_condition_met(struct nvbios_init *init, u8 cond) argument
500 u16 port = nvbios_rd16(bios, table + (cond * 5) + 0);
501 u8 index = nvbios_rd08(bios, table + (cond * 5) + 2);
502 u8 mask = nvbios_rd08(bios, table + (cond * 5) + 3);
503 u8 value = nvbios_rd08(bios, table + (cond *
512 init_io_flag_condition_met(struct nvbios_init *init, u8 cond) argument
782 u8 cond = nvbios_rd08(bios, init->offset + 1); local
800 u8 cond = nvbios_rd08(bios, init->offset + 1); local
1240 u8 cond = nvbios_rd08(bios, init->offset + 1); local
1805 u8 cond = nvbios_rd08(bios, init->offset + 1); local
1822 u8 cond = nvbios_rd08(bios, init->offset + 1); local
[all...]
/linux-master/net/netfilter/
H A Dxt_dccp.c27 #define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
28 || (!!((invflag) & (option)) ^ (cond)))
/linux-master/arch/x86/tools/
H A Dinsn_decoder_test.c14 #define unlikely(cond) (cond)
/linux-master/drivers/staging/media/omap4iss/
H A Diss.h233 #define iss_poll_condition_timeout(cond, timeout, min_ival, max_ival) \
239 while (!(__cond = (cond))) { \
/linux-master/arch/arm/mach-bcm/
H A Dbcm63xx_pmb.c58 * shift is seen, masked with mask and is different from cond.
62 u32 shift, u32 mask, u32 cond)
76 } while (((*val >> shift) & mask) != cond);
60 bpcm_wr_rd_mask(void __iomem *master, unsigned int addr, u32 off, u32 *val, u32 shift, u32 mask, u32 cond) argument
/linux-master/drivers/net/dsa/mv88e6xxx/
H A Ddevlink.c709 bool (*cond)(struct mv88e6xxx_chip *chip); member in struct:mv88e6xxx_region
730 .cond = mv88e6xxx_has_stu,
736 .cond = mv88e6xxx_has_pvt,
775 bool (*cond)(struct mv88e6xxx_chip *chip);
785 cond = mv88e6xxx_regions[i].cond;
787 if (cond && !cond(chip))
/linux-master/arch/arm/mach-omap2/
H A Dcommon.h197 * @cond: condition to test until it evaluates to true
201 * Loop waiting for @cond to become true or until at least @timeout
206 #define omap_test_timeout(cond, timeout, index) \
209 if (cond) \
/linux-master/include/linux/power/
H A Dsmartreflex.h178 * @cond: condition to test until it evaluates to true
182 * Loop waiting for @cond to become true or until at least @timeout
188 #define sr_test_cond_timeout(cond, timeout, index) \
191 if (cond) \
/linux-master/drivers/gpu/drm/msm/
H A Dmsm_gem_shrinker.c106 bool cond; member in struct:__anon753
121 if (!stages[i].cond)
/linux-master/tools/perf/tests/
H A Dtests.h13 #define TEST_ASSERT_VAL(text, cond) \
15 if (!(cond)) { \
/linux-master/tools/testing/selftests/net/lib/py/
H A Dksft.py78 def ksft_busy_wait(cond, sleep=0.005, deadline=1, comment=""):
81 if cond():
/linux-master/drivers/gpu/drm/lima/
H A Dlima_mmu.c16 #define lima_mmu_send_command(cmd, addr, val, cond) \
22 cond, 0, 100); \
/linux-master/tools/testing/selftests/bpf/
H A Dbpf_experimental.h458 #define bpf_assert(cond) if (!(cond)) bpf_throw(0);
467 #define bpf_assert_with(cond, value) if (!(cond)) bpf_throw(value);
/linux-master/tools/testing/selftests/net/forwarding/
H A Dsch_red.sh220 local cond=$1; shift
233 ((pct $cond))
238 local cond=$1; shift
251 ((pct $cond))
/linux-master/arch/arc/net/
H A Dbpf_jit.h148 bool check_jmp_32(u32 curr_off, u32 targ_off, u8 cond);
149 bool check_jmp_64(u32 curr_off, u32 targ_off, u8 cond);
150 u8 gen_jmp_32(u8 *buf, u8 rd, u8 rs, u8 cond, u32 c_off, u32 t_off);
151 u8 gen_jmp_64(u8 *buf, u8 rd, u8 rs, u8 cond, u32 c_off, u32 t_off);
/linux-master/drivers/clk/
H A Dclk-plldig.c154 unsigned int val, cond; local
170 return readl_poll_timeout_atomic(data->regs + PLLDIG_REG_PLLSR, cond,
171 cond & PLLDIG_LOCK_MASK, 0,

Completed in 1309 milliseconds

1234567891011