/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | outpdp.c | 83 if (retrain || !atomic_read(&outp->lt.done)) { in nvkm_output_dp_train() 91 atomic_set(&outp->lt.done, 0); in nvkm_output_dp_train() 92 schedule_work(&outp->lt.work); in nvkm_output_dp_train() 98 if (!wait_event_timeout(outp->lt.wait, in nvkm_output_dp_train() 99 atomic_read(&outp->lt.done), in nvkm_output_dp_train() 132 atomic_set(&outp->lt.done, 0); in nvkm_output_dp_enable() 180 flush_work(&outp->lt.work); in nvkm_output_dp_fini() 242 INIT_WORK(&outp->lt.work, nvkm_dp_train); in nvkm_output_dp_ctor() 243 init_waitqueue_head(&outp->lt.wait); in nvkm_output_dp_ctor() 244 atomic_set(&outp->lt.done, 0); in nvkm_output_dp_ctor()
|
D | dport.c | 324 struct nvkm_output_dp *outp = container_of(w, typeof(*outp), lt.work); in nvkm_dp_train() 405 atomic_set(&outp->lt.done, 1); in nvkm_dp_train() 406 wake_up(&outp->lt.wait); in nvkm_dp_train()
|
D | outpdp.h | 36 } lt; member
|
D | rootnv50.c | 169 atomic_set(&outpdp->lt.done, 0); in nv50_disp_root_mthd_()
|
D | gf119.c | 221 atomic_set(&outpdp->lt.done, 0); in gf119_disp_intr_unk2_0()
|
D | nv50.c | 470 atomic_set(&outpdp->lt.done, 0); in nv50_disp_intr_unk20_0()
|
/linux-4.4.14/scripts/ |
D | unifdef.c | 831 Linetype lt; in eval_unary() local 837 lt = eval_unary(ops, valp, &cp); in eval_unary() 838 if (lt == LT_ERROR) in eval_unary() 840 if (lt != LT_IF) { in eval_unary() 842 lt = *valp ? LT_TRUE : LT_FALSE; in eval_unary() 847 lt = eval_table(eval_ops, valp, &cp); in eval_unary() 848 if (lt == LT_ERROR) in eval_unary() 858 lt = *valp ? LT_TRUE : LT_FALSE; in eval_unary() 871 lt = LT_IF; in eval_unary() 874 lt = *valp ? LT_TRUE : LT_FALSE; in eval_unary() [all …]
|
D | Kbuild.include | 143 # Usage: EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)
|
/linux-4.4.14/arch/mips/pci/ |
D | fixup-cobalt.c | 56 unsigned char lt; in qube_raq_via_bmIDE_fixup() local 67 pci_read_config_byte(dev, PCI_LATENCY_TIMER, <); in qube_raq_via_bmIDE_fixup() 68 if (lt < 64) in qube_raq_via_bmIDE_fixup()
|
D | pcie-octeon.c | 1110 } while ((pciercx_cfg032.s.dlla == 0) || (pciercx_cfg032.s.lt == 1)); in __cvmx_pcie_rc_initialize_link_gen2()
|
/linux-4.4.14/arch/arm64/lib/ |
D | memset.S | 109 b.lt 2f 160 b.lt .Lnot_short /*count is at least 128 bytes*/ 180 b.lt .Lnot_short /* Not enough to reach alignment. */ 192 b.lt .Lnot_short
|
D | copy_template.S | 101 b.lt 2f
|
D | memmove.S | 115 b.lt 2f
|
/linux-4.4.14/kernel/locking/ |
D | lockdep_proc.c | 418 static void seq_lock_time(struct seq_file *m, struct lock_time *lt) in seq_lock_time() argument 420 seq_printf(m, "%14lu", lt->nr); in seq_lock_time() 421 seq_time(m, lt->min); in seq_lock_time() 422 seq_time(m, lt->max); in seq_lock_time() 423 seq_time(m, lt->total); in seq_lock_time() 424 seq_time(m, lt->nr ? div_s64(lt->total, lt->nr) : 0); in seq_lock_time()
|
D | lockdep.c | 177 static void lock_time_inc(struct lock_time *lt, u64 time) in lock_time_inc() argument 179 if (time > lt->max) in lock_time_inc() 180 lt->max = time; in lock_time_inc() 182 if (time < lt->min || !lt->nr) in lock_time_inc() 183 lt->min = time; in lock_time_inc() 185 lt->total += time; in lock_time_inc() 186 lt->nr++; in lock_time_inc()
|
/linux-4.4.14/arch/ia64/lib/ |
D | clear_page.S | 57 cmp.lt p8,p0=dst_fetch, dst_last 65 cmp.lt p8,p0=dst_fetch, dst_last
|
D | memcpy_mck.S | 116 cmp.lt p6,p0=2*PREFETCH_DIST,cnt 117 cmp.lt p7,p8=1,cnt 289 cmp.lt p6,p7=blocksize,in2 299 cmp.lt p7,p8=1,r21 630 cmp.lt p8,p0=A,r0
|
D | clear_user.S | 67 cmp.lt p6,p0=16,len // if len > 16 then long memset
|
D | memset.S | 184 cmp.lt p_scr, p0 = ptr9, ptr1 // do we need more prefetching? 238 cmp.lt p_scr, p0 = ptr9, ptr1 // do we need more prefetching?
|
D | do_csum.S | 133 cmp.lt p0,p6=r0,len // check for zero length or negative (32bit len)
|
D | copy_user.S | 103 cmp.lt p10,p7=COPY_BREAK,len // if len > COPY_BREAK then long copy
|
/linux-4.4.14/arch/mips/kernel/ |
D | ptrace.c | 243 unsigned long lt[NUM_WATCH_REGS]; in ptrace_set_watch_regs() local 252 __get_user(lt[i], &addr->WATCH_STYLE.watchlo[i]); in ptrace_set_watch_regs() 254 if (lt[i] & __UA_LIMIT) in ptrace_set_watch_regs() 258 if (lt[i] & 0xffffffff80000000UL) in ptrace_set_watch_regs() 261 if (lt[i] & __UA_LIMIT) in ptrace_set_watch_regs() 271 if (lt[i] & 7) in ptrace_set_watch_regs() 273 child->thread.watch.mips3264.watchlo[i] = lt[i]; in ptrace_set_watch_regs()
|
/linux-4.4.14/kernel/gcov/ |
D | Makefile | 6 obj-$(CONFIG_GCOV_FORMAT_AUTODETECT) += $(call cc-ifversion, -lt, 0407, \
|
/linux-4.4.14/drivers/power/ |
D | bq25890_charger.c | 284 struct bq25890_lookup lt; member 296 [TBL_TREG] = { .lt = {bq25890_treg_tbl, BQ25890_TREG_TBL_SIZE} }, 297 [TBL_BOOSTI] = { .lt = {bq25890_boosti_tbl, BQ25890_BOOSTI_TBL_SIZE} } 324 const u32 *tbl = bq25890_tables[id].lt.tbl; in bq25890_find_idx() 325 u32 tbl_size = bq25890_tables[id].lt.size; in bq25890_find_idx() 350 return bq25890_tables[id].lt.tbl[idx]; in bq25890_find_val()
|
/linux-4.4.14/arch/arm64/mm/ |
D | proc-macros.S | 73 b.lt 9000f
|
D | proc.S | 209 b.lt 1f
|
/linux-4.4.14/fs/reiserfs/ |
D | Makefile | 34 ccflags-$(CONFIG_PPC32) := $(call cc-ifversion, -lt, 0400, -O1)
|
/linux-4.4.14/arch/arm/lib/ |
D | clear_user.S | 35 strusr r2, r0, 1, lt
|
/linux-4.4.14/tools/vm/ |
D | slabinfo-gnuplot.sh | 96 set style histogram columnstacked title textcolor lt -1
|
/linux-4.4.14/arch/arm/include/asm/ |
D | assembler.h | 189 .irp c,,eq,ne,cs,cc,mi,pl,vs,vc,hi,ls,ge,lt,gt,le,hs,lo 494 .irp c,,eq,ne,cs,cc,mi,pl,vs,vc,hi,ls,ge,lt,gt,le,hs,lo
|
/linux-4.4.14/drivers/scsi/be2iscsi/ |
D | be_main.h | 758 u8 lt; /* DWORD 0 */ member 826 u8 lt; /* DWORD 11 */ member 919 u8 lt; /* DWORD 0 */ member
|
/linux-4.4.14/arch/powerpc/mm/ |
D | slb_low.S | 198 crset 4*cr7+lt /* set "user" flag for later */
|
/linux-4.4.14/Documentation/DocBook/ |
D | Makefile | 215 -e "s/</\\</g" \
|
/linux-4.4.14/arch/arm64/kernel/vdso/ |
D | gettimeofday.S | 151 b.lt 5f
|
/linux-4.4.14/drivers/staging/lustre/lustre/lclient/ |
D | lcommon_cl.c | 1150 struct luda_type *lt; in ll_dirent_type_get() local 1158 lt = (void *)ent->lde_name + len; in ll_dirent_type_get() 1159 type = IFTODT(le16_to_cpu(lt->lt_type)); in ll_dirent_type_get()
|
/linux-4.4.14/arch/mips/vdso/ |
D | Makefile | 31 ifeq ($(call ld-ifversion, -lt, 22500000, y),y)
|
/linux-4.4.14/arch/powerpc/crypto/ |
D | aes-spe-modes.S | 366 bt lt,ppc_decrypt_cbc_end 428 bt lt,ppc_crypt_ctr_partial
|
/linux-4.4.14/drivers/hid/ |
D | hid-wiimote-modules.c | 1053 __s8 rx, ry, lx, ly, lt, rt; in wiimod_classic_in_ext() local 1112 lt = (ext[2] >> 2) & 0x18; in wiimod_classic_in_ext() 1113 lt |= (ext[3] >> 5) & 0x07; in wiimod_classic_in_ext() 1118 lt <<= 1; in wiimod_classic_in_ext() 1125 input_report_abs(wdata->extension.input, ABS_HAT3Y, lt); in wiimod_classic_in_ext()
|
/linux-4.4.14/arch/x86/ |
D | Makefile | 72 KBUILD_CFLAGS += $(call cc-ifversion, -lt, 0400, \
|
/linux-4.4.14/arch/ia64/kernel/ |
D | gate.S | 270 cmp.lt p7,p0=r14,r0 // p7 <- (r14 < 0)?
|
D | entry.S | 504 cmp.lt p6,p0=r8,r0 // check tracehook 539 cmp.lt p6,p0=r8,r0 // syscall failed? 1059 cmp.lt pRecurse,p0=Nregs*8,in0 // if more than Nregs regs left to clear, (re)curse 1086 cmp.lt pRecurse,p0=Nregs*8,in0 // if more than Nregs regs left to clear, (re)curse
|
D | mca_asm.S | 1089 cmp.lt p6,p7=in0,r14
|
D | ivt.S | 1007 cmp.lt p10,p9=r11,r8 // frame size can't be more than local+8
|
D | head.S | 375 cmp4.lt p7,p6=0,r18
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | nfs.txt | 121 [ $# -lt 2 ] && die
|
/linux-4.4.14/arch/arm64/kernel/ |
D | head.S | 518 b.lt 4f // Skip if no PMU present
|
/linux-4.4.14/net/ipv4/ |
D | fib_trie.c | 1684 struct trie *lt; in fib_trie_unmerge() local 1694 lt = (struct trie *)local_tb->tb_data; in fib_trie_unmerge() 1714 local_l = fib_find_node(lt, &local_tp, l->key); in fib_trie_unmerge() 1716 if (fib_insert_alias(lt, local_tp, local_l, new_fa, in fib_trie_unmerge()
|
/linux-4.4.14/net/xfrm/ |
D | xfrm_user.c | 492 struct nlattr *lt = attrs[XFRMA_LTIME_VAL]; in xfrm_update_ae_params() local 512 if (lt) { in xfrm_update_ae_params() 514 ltime = nla_data(lt); in xfrm_update_ae_params() 1933 struct nlattr *lt = attrs[XFRMA_LTIME_VAL]; in xfrm_new_ae() local 1937 if (!lt && !rp && !re && !et && !rt) in xfrm_new_ae()
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
D | cvmx-pciercx-defs.h | 236 uint32_t lt:8; member 240 uint32_t lt:8; 1029 uint32_t lt:1; member 1061 uint32_t lt:1;
|
D | cvmx-pci-defs.h | 288 uint32_t lt:8; member 292 uint32_t lt:8;
|
/linux-4.4.14/Documentation/scsi/ |
D | osst.txt | 200 while test $nr -lt $nrs; do
|
/linux-4.4.14/Documentation/power/ |
D | swsusp.txt | 360 if [ $LOGLEVEL -lt 5 ]; then
|
/linux-4.4.14/Documentation/kbuild/ |
D | makefiles.txt | 540 ccflags-y := $(call cc-ifversion, -lt, 0402, -O1) 545 -eq, -ne, -lt, -le, -gt, and -ge
|