Searched refs:ll (Results 26 - 50 of 109) sorted by relevance

12345

/linux-master/drivers/net/ethernet/amd/
H A Ddeclance.c254 volatile struct lance_regs *ll; member in struct:lance_private
305 volatile struct lance_regs *ll = lp->ll; local
313 writereg(&ll->rap, LE_CSR1);
314 writereg(&ll->rdp, (leptr & 0xFFFF));
315 writereg(&ll->rap, LE_CSR2);
316 writereg(&ll->rdp, leptr >> 16);
317 writereg(&ll->rap, LE_CSR3);
318 writereg(&ll->rdp, lp->busmaster_regval);
321 writereg(&ll
529 volatile struct lance_regs *ll = lp->ll; local
647 volatile struct lance_regs *ll = lp->ll; local
738 volatile struct lance_regs *ll = lp->ll; local
784 volatile struct lance_regs *ll = lp->ll; local
842 volatile struct lance_regs *ll = lp->ll; local
873 volatile struct lance_regs *ll = lp->ll; local
890 volatile struct lance_regs *ll = lp->ll; local
901 volatile struct lance_regs *ll = lp->ll; local
976 volatile struct lance_regs *ll = lp->ll; local
1030 volatile struct lance_regs *ll; local
[all...]
/linux-master/drivers/md/persistent-data/
H A Ddm-space-map-metadata.c171 struct ll_disk ll; member in struct:sm_metadata
202 r = sm_ll_inc(&smm->ll, op->b, op->e, &nr_allocations);
206 r = sm_ll_dec(&smm->ll, op->b, op->e, &nr_allocations);
287 *count = smm->ll.nr_blocks;
333 r = sm_ll_lookup(&smm->ll, b, result);
379 r = sm_ll_lookup_bitmap(&smm->ll, b, &rc);
407 r = sm_ll_insert(&smm->ll, b, count, &nr_allocations);
425 r = sm_ll_inc(&smm->ll, b, e, &nr_allocations);
442 r = sm_ll_dec(&smm->ll, b, e, &nr_allocations);
456 * Any block we allocate has to be free in both the old and current ll
[all...]
/linux-master/arch/microblaze/lib/
H A Dlibgcc.h23 long long ll; member in union:__anon501
/linux-master/arch/mips/lib/
H A Dlibgcc.h31 long long ll; member in union:__anon597
/linux-master/include/linux/
H A Dlibgcc.h27 long long ll; member in union:__anon909
/linux-master/tools/testing/selftests/kvm/x86_64/
H A Dhyperv_clock.c23 u64 ll; member in union:__anon128
30 a0.ll = a;
31 b0.ll = b;
33 rm.ll = (u64)a0.l.low * b0.l.high;
34 rn.ll = (u64)a0.l.high * b0.l.low;
35 rh.ll = (u64)a0.l.high * b0.l.high;
40 return rh.ll;
H A Dvmx_tsc_adjust_test.c35 #define TSC_ADJUST_VALUE (1ll << 32)
36 #define TSC_OFFSET_VALUE -(1ll << 48)
/linux-master/arch/powerpc/kernel/
H A Dalign.c111 u64 ll; member in union:__anon60
139 data.ll = 0;
165 temp.ll = data.ll = 0;
192 data.ll = temp.ll;
230 data.ll = swab64(data.ll);
/linux-master/samples/bpf/
H A Dtrace_output_user.c20 #define MAX_CNT 100000ll
39 MAX_CNT * 1000000000ll / (time_get_ns() - start_time));
H A Dtracex4_user.c40 if (val - v.val < 1000000000ll)
44 next_key, (val - v.val) / 1000000000ll, v.ip);
H A Dmap_perf_test_user.c91 cpu, max_cnt * 1000000000ll / (time_get_ns() - start_time));
200 max_cnt * 1000000000ll / (time_get_ns() - start_time));
232 cpu, max_cnt * 1000000000ll / (time_get_ns() - start_time));
244 cpu, max_cnt * 1000000000ll / (time_get_ns() - start_time));
256 cpu, max_cnt * 1000000000ll / (time_get_ns() - start_time));
268 cpu, max_cnt * 1000000000ll / (time_get_ns() - start_time));
280 cpu, max_cnt * 1000000000ll * 64 / (time_get_ns() - start_time));
292 cpu, max_cnt * 1000000000ll * 64 / (time_get_ns() - start_time));
H A Dtracex3.bpf.c87 base = 1ll << l;
/linux-master/kernel/locking/
H A Dtest-ww_mutex.c495 struct reorder_lock *ll, *ln; local
504 ll = kmalloc(sizeof(*ll), GFP_KERNEL);
505 if (!ll)
508 ll->lock = &stress->locks[order[n]];
509 list_add(&ll->link, &locks);
517 list_for_each_entry(ll, &locks, link) {
518 err = ww_mutex_lock(ll->lock, &ctx);
522 ln = ll;
532 ww_mutex_lock_slow(ll
[all...]
/linux-master/lib/lzo/
H A Dlzo1x_compress.c327 size_t ll = min_t(size_t, l, m4_max_offset + 1); local
328 uintptr_t ll_end = (uintptr_t) ip + ll;
329 if ((ll_end + ((t + ll) >> 5)) <= ll_end)
333 t = lzo1x_1_do_compress(ip, ll, op, out_len, t, wrkmem,
335 ip += ll;
337 l -= ll;
/linux-master/drivers/media/dvb-core/
H A Ddvb_vb2.c258 int ll = 0; local
293 ll = min(todo, ctx->remain);
295 memcpy(vbuf + ctx->offset, psrc, ll);
296 todo -= ll;
297 psrc += ll;
299 ctx->remain -= ll;
300 ctx->offset += ll;
310 vb2_set_plane_payload(&ctx->buf->vb, 0, ll);
/linux-master/net/can/
H A Disotp.c160 struct can_isotp_ll_options ll; member in struct:isotp_sock
220 nskb = alloc_skb(so->ll.mtu + sizeof(struct can_skb_priv), gfp_any());
237 skb_put_zero(nskb, so->ll.mtu);
256 ncf->flags = so->ll.tx_flags;
654 if (skb->len != so->ll.mtu)
773 skb = alloc_skb(so->ll.mtu + sizeof(struct can_skb_priv), GFP_ATOMIC);
784 skb_put_zero(skb, so->ll.mtu);
794 cf->flags = so->ll.tx_flags;
1001 skb = sock_alloc_send_skb(sk, so->ll.mtu + sizeof(struct can_skb_priv),
1016 skb_put_zero(skb, so->ll
1438 struct can_isotp_ll_options ll; local
[all...]
/linux-master/lib/
H A Dinflate.c844 unsigned *ll; /* literal/length and distance code lengths */ local
852 ll = malloc(sizeof(*ll) * (288+32)); /* literal/length and distance code lengths */
854 ll = malloc(sizeof(*ll) * (286+30)); /* literal/length and distance code lengths */
857 if (ll == NULL)
891 ll[border[j]] = (unsigned)b & 7;
895 ll[border[j]] = 0;
901 if ((i = huft_build(ll, 19, 19, NULL, NULL, &tl, &bl)) != 0)
922 ll[
[all...]
/linux-master/sound/usb/usx2y/
H A Dusbus428ctldefs.h66 ll, member in struct:usx2y_volume
/linux-master/tools/testing/selftests/bpf/benchs/
H A Dbench_bpf_hashmap_full_update.c77 i, ctx.skel->bss->nr_loops * 1000000000ll / time);
/linux-master/drivers/gpu/drm/amd/display/dc/dcn201/
H A Ddcn201_dpp.c199 if (scl_data->ratios.horz.value == (8ll << 32))
201 if (scl_data->ratios.vert.value == (8ll << 32))
203 if (scl_data->ratios.horz_c.value == (8ll << 32))
205 if (scl_data->ratios.vert_c.value == (8ll << 32))
/linux-master/tools/testing/selftests/net/
H A Dtoeplitz.c343 struct sockaddr_ll ll = { 0 }; local
360 ll.sll_family = AF_PACKET;
361 ll.sll_ifindex = if_nametoindex(cfg_ifname);
362 ll.sll_protocol = cfg_family == AF_INET ? htons(ETH_P_IP) :
364 if (bind(fd, (void *)&ll, sizeof(ll)))
H A Dpsock_tpacket.c70 struct sockaddr_ll ll; member in struct:ring
377 struct sockaddr_ll ll = { local
403 ll.sll_ifindex = if_nametoindex("lo");
404 ret = bind(rcv_sock, (struct sockaddr *) &ll, sizeof(ll));
732 ring->ll.sll_family = PF_PACKET;
733 ring->ll.sll_protocol = htons(ETH_P_ALL);
734 ring->ll.sll_ifindex = if_nametoindex("lo");
735 ring->ll.sll_hatype = 0;
736 ring->ll
[all...]
/linux-master/drivers/pci/controller/dwc/
H A Dpcie-designware.c964 struct dw_edma_region *ll; local
969 ll = &pci->edma.ll_region_wr[i];
970 ll->sz = DMA_LLP_MEM_SIZE;
971 ll->vaddr.mem = dmam_alloc_coherent(pci->dev, ll->sz,
973 if (!ll->vaddr.mem)
976 ll->paddr = paddr;
980 ll = &pci->edma.ll_region_rd[i];
981 ll->sz = DMA_LLP_MEM_SIZE;
982 ll
[all...]
/linux-master/tools/perf/tests/shell/coresight/memcpy_thread/
H A Dmemcpy_thread.c65 if ((v < 1) || (v > 40000000000ll)) {
/linux-master/include/linux/sunrpc/
H A Dcache.h292 long long ll; local
300 if (kstrtoll(buf, 0, &ll))
303 *time = ll;

Completed in 249 milliseconds

12345