Searched refs:ll (Results 51 - 75 of 109) sorted by last modified time

12345

/linux-master/drivers/gpu/drm/amd/display/include/
H A Dfixed31_32.h30 #define LLONG_MAX 9223372036854775807ll
33 #define LLONG_MIN (-LLONG_MAX - 1ll)
/linux-master/arch/xtensa/lib/
H A Dstrnlen_user.S93 # Actually, we don't need to check. Zero or nonzero, we'll add one.
H A Dmulsi3.S60 umul.aa.ll a2, a3
/linux-master/arch/mips/include/asm/
H A Datomic.h44 #define ATOMIC_OP(pfx, op, type, c_op, asm_op, ll, sc) \
62 "1: " #ll " %0, %1 # " #pfx "_" #op " \n" \
71 #define ATOMIC_OP_RETURN(pfx, op, type, c_op, asm_op, ll, sc) \
92 "1: " #ll " %1, %2 # " #pfx "_" #op "_return\n" \
105 #define ATOMIC_FETCH_OP(pfx, op, type, c_op, asm_op, ll, sc) \
125 "1: " #ll " %1, %2 # " #pfx "_fetch_" #op "\n" \
139 #define ATOMIC_OPS(pfx, op, type, c_op, asm_op, ll, sc) \
140 ATOMIC_OP(pfx, op, type, c_op, asm_op, ll, sc) \
141 ATOMIC_OP_RETURN(pfx, op, type, c_op, asm_op, ll, sc) \
142 ATOMIC_FETCH_OP(pfx, op, type, c_op, asm_op, ll, s
[all...]
H A Dasm.h215 #define LONG_LL ll
335 * cause ll-sc sequences to execute non-atomically.
/linux-master/include/linux/
H A Dlibgcc.h27 long long ll; member in union:__anon909
/linux-master/drivers/crypto/intel/keembay/
H A Docs-aes.c1423 struct ocs_dma_linked_list *ll = NULL; local
1473 ll = dll_desc->vaddr;
1475 ll[i].src_addr = sg_dma_address(sg) + data_offset;
1476 ll[i].src_len = (sg_dma_len(sg) - data_offset) < data_size ?
1479 data_size -= ll[i].src_len;
1481 ll[i].next = dll_desc->dma_addr + (sizeof(*ll) * (i + 1));
1482 ll[i].ll_flags = 0;
1485 ll[i - 1].next = 0;
1486 ll[
[all...]
/linux-master/drivers/bluetooth/
H A Dhci_ll.c89 struct ll_struct *ll = hu->priv; local
105 skb_queue_tail(&ll->txq, skb);
113 struct ll_struct *ll; local
117 ll = kzalloc(sizeof(*ll), GFP_KERNEL);
118 if (!ll)
121 skb_queue_head_init(&ll->txq);
122 skb_queue_head_init(&ll->tx_wait_q);
123 spin_lock_init(&ll->hcill_lock);
125 ll
142 struct ll_struct *ll = hu->priv; local
155 struct ll_struct *ll = hu->priv; local
186 __ll_do_awake(struct ll_struct *ll) argument
202 struct ll_struct *ll = hu->priv; local
253 struct ll_struct *ll = hu->priv; local
287 struct ll_struct *ll = hu->priv; local
313 struct ll_struct *ll = hu->priv; local
360 struct ll_struct *ll = hu->priv; local
427 struct ll_struct *ll = hu->priv; local
446 struct ll_struct *ll = hu->priv; local
[all...]
/linux-master/arch/mips/net/
H A Dbpf_jit_comp.c412 emit(ctx, ll, MIPS_R_T9, off, dst);
448 emit(ctx, ll, MIPS_R_T9, off, dst);
/linux-master/tools/testing/selftests/kvm/x86_64/
H A Dvmx_tsc_adjust_test.c35 #define TSC_ADJUST_VALUE (1ll << 32)
36 #define TSC_OFFSET_VALUE -(1ll << 48)
/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...]
H A Ddm-space-map-disk.c28 struct ll_disk ll; member in struct:sm_disk
46 return sm_ll_extend(&smd->ll, extra_blocks);
72 return sm_ll_lookup(&smd->ll, b, result);
97 r = sm_ll_insert(&smd->ll, b, count, &nr_allocations);
110 r = sm_ll_inc(&smd->ll, b, e, &nr_allocations);
123 r = sm_ll_dec(&smd->ll, b, e, &nr_allocations);
137 * Any block we allocate has to be free in both the old and current ll.
139 r = sm_ll_find_common_free_block(&smd->old_ll, &smd->ll, smd->begin, smd->ll.nr_blocks, b);
145 r = sm_ll_find_common_free_block(&smd->old_ll, &smd->ll,
[all...]
H A Ddm-space-map-common.c194 static int sm_ll_init(struct ll_disk *ll, struct dm_transaction_manager *tm) argument
196 memset(ll, 0, sizeof(struct ll_disk));
198 ll->tm = tm;
200 ll->bitmap_info.tm = tm;
201 ll->bitmap_info.levels = 1;
208 ll->bitmap_info.value_type.size = sizeof(struct disk_index_entry);
209 ll->bitmap_info.value_type.inc = NULL;
210 ll->bitmap_info.value_type.dec = NULL;
211 ll->bitmap_info.value_type.equal = NULL;
213 ll
237 sm_ll_extend(struct ll_disk *ll, dm_block_t extra_blocks) argument
280 sm_ll_lookup_bitmap(struct ll_disk *ll, dm_block_t b, uint32_t *result) argument
309 sm_ll_lookup_big_ref_count(struct ll_disk *ll, dm_block_t b, uint32_t *result) argument
324 sm_ll_lookup(struct ll_disk *ll, dm_block_t b, uint32_t *result) argument
337 sm_ll_find_free_block(struct ll_disk *ll, dm_block_t begin, dm_block_t end, dm_block_t *result) argument
422 sm_ll_insert(struct ll_disk *ll, dm_block_t b, uint32_t ref_count, int32_t *nr_allocations) argument
527 exit_inc_context(struct ll_disk *ll, struct inc_context *ic) argument
535 reset_inc_context(struct ll_disk *ll, struct inc_context *ic) argument
551 __sm_ll_inc_overflow(struct ll_disk *ll, dm_block_t b, struct inc_context *ic) argument
584 sm_ll_inc_overflow(struct ll_disk *ll, dm_block_t b, struct inc_context *ic) argument
609 shadow_bitmap(struct ll_disk *ll, struct inc_context *ic) argument
629 ensure_bitmap(struct ll_disk *ll, struct inc_context *ic) argument
647 sm_ll_inc_bitmap(struct ll_disk *ll, dm_block_t b, uint32_t bit, uint32_t bit_end, int32_t *nr_allocations, dm_block_t *new_b, struct inc_context *ic) argument
716 __sm_ll_inc(struct ll_disk *ll, dm_block_t b, dm_block_t e, int32_t *nr_allocations, dm_block_t *new_b) argument
746 sm_ll_inc(struct ll_disk *ll, dm_block_t b, dm_block_t e, int32_t *nr_allocations) argument
762 __sm_ll_del_overflow(struct ll_disk *ll, dm_block_t b, struct inc_context *ic) argument
770 __sm_ll_dec_overflow(struct ll_disk *ll, dm_block_t b, struct inc_context *ic, uint32_t *old_rc) argument
804 sm_ll_dec_overflow(struct ll_disk *ll, dm_block_t b, struct inc_context *ic, uint32_t *old_rc) argument
840 sm_ll_dec_bitmap(struct ll_disk *ll, dm_block_t b, uint32_t bit, uint32_t bit_end, struct inc_context *ic, int32_t *nr_allocations, dm_block_t *new_b) argument
899 __sm_ll_dec(struct ll_disk *ll, dm_block_t b, dm_block_t e, int32_t *nr_allocations, dm_block_t *new_b) argument
928 sm_ll_dec(struct ll_disk *ll, dm_block_t b, dm_block_t e, int32_t *nr_allocations) argument
944 sm_ll_commit(struct ll_disk *ll) argument
959 metadata_ll_load_ie(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie) argument
966 metadata_ll_save_ie(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie) argument
974 metadata_ll_init_index(struct ll_disk *ll) argument
990 metadata_ll_open(struct ll_disk *ll) argument
1006 metadata_ll_max_entries(struct ll_disk *ll) argument
1011 metadata_ll_commit(struct ll_disk *ll) argument
1028 sm_ll_new_metadata(struct ll_disk *ll, struct dm_transaction_manager *tm) argument
1057 sm_ll_open_metadata(struct ll_disk *ll, struct dm_transaction_manager *tm, void *root_le, size_t len) argument
1095 ie_cache_writeback(struct ll_disk *ll, struct ie_cache *iec) argument
1108 disk_ll_load_ie(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie) argument
1139 disk_ll_save_ie(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie) argument
1168 disk_ll_init_index(struct ll_disk *ll) argument
1181 disk_ll_open(struct ll_disk *ll) argument
1186 disk_ll_max_entries(struct ll_disk *ll) argument
1191 disk_ll_commit(struct ll_disk *ll) argument
1206 sm_ll_new_disk(struct ll_disk *ll, struct dm_transaction_manager *tm) argument
1235 sm_ll_open_disk(struct ll_disk *ll, struct dm_transaction_manager *tm, void *root_le, size_t len) argument
[all...]
H A Ddm-space-map-common.h51 typedef int (*load_ie_fn)(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *result);
52 typedef int (*save_ie_fn)(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie);
53 typedef int (*init_index_fn)(struct ll_disk *ll);
54 typedef int (*open_index_fn)(struct ll_disk *ll);
55 typedef dm_block_t (*max_index_entries_fn)(struct ll_disk *ll);
56 typedef int (*commit_fn)(struct ll_disk *ll);
118 int sm_ll_extend(struct ll_disk *ll, dm_block_t extra_blocks);
119 int sm_ll_lookup_bitmap(struct ll_disk *ll, dm_block_t b, uint32_t *result);
120 int sm_ll_lookup(struct ll_disk *ll, dm_block_t b, uint32_t *result);
121 int sm_ll_find_free_block(struct ll_disk *ll, dm_block_
[all...]
/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 Dtest_overhead_user.c60 cpu, MAX_CNT * 1000000000ll / (time_get_ns() - start_time));
90 cpu, MAX_CNT * 1000000000ll / (time_get_ns() - start_time));
/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)))
/linux-master/drivers/isdn/mISDN/
H A Dl1oip_core.c873 int l, ll; local
896 ll = (l < MAX_DFRAME_LEN_L1) ? l : MAX_DFRAME_LEN_L1;
898 hc->chan[dch->slot].tx_counter++, p, ll);
899 p += ll;
900 l -= ll;
1092 int l, ll; local
1138 ll = (l < MAX_DFRAME_LEN_L1) ? l : MAX_DFRAME_LEN_L1;
1140 hc->chan[bch->slot].tx_counter, p, ll);
1141 hc->chan[bch->slot].tx_counter += ll;
1142 p += ll;
[all...]
/linux-master/lib/zstd/compress/
H A Dzstd_opt.c155 { unsigned ll; local
159 for (ll=0; ll<=MaxLL; ll++) {
161 U32 const bitCost = FSE_getMaxNbBits(llstate.symbolTT, ll);
163 optPtr->litLengthFreq[ll] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/;
164 optPtr->litLengthSum += optPtr->litLengthFreq[ll];
1155 DEBUGLOG(7, "cPos:%zi==rPos:%u : better price (%.2f<=%.2f) using literal (ll==%u) (hist:%u,%u,%u)",
/linux-master/crypto/
H A Dcamellia_generic.c319 #define ROLDQ(ll, lr, rl, rr, w0, w1, bits) ({ \
320 w0 = ll; \
321 ll = (ll << bits) + (lr >> (32 - bits)); \
327 #define ROLDQo32(ll, lr, rl, rr, w0, w1, bits) ({ \
328 w0 = ll; \
330 ll = (lr << (bits - 32)) + (rl >> (64 - bits)); \
811 #define CAMELLIA_FLS(ll, lr, rl, rr, kll, klr, krl, krr, t0, t1, t2, t3) ({ \
814 t0 &= ll; \
822 ll
[all...]
/linux-master/drivers/clk/st/
H A Dclkgen-fsyn.c728 for (; p2 < 32768ll && (p2 <= (fs->pe + 2)); p2++) {
/linux-master/drivers/infiniband/hw/mlx4/
H A Dmad.c1028 enum rdma_link_layer ll; local
1031 ll = rdma_port_get_link_layer(&dev->ib_dev, p + 1);
1033 if (ll == IB_LINK_LAYER_INFINIBAND) {
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dtest_overhead.c37 MAX_CNT * 1000000ll / (time_get_ns() - start_time));
/linux-master/drivers/net/ethernet/amd/
H A Da2065.c107 volatile struct lance_regs *ll; member in struct:lance_private
130 volatile struct lance_regs *ll = lp->ll; local
134 ll->rap = LE_CSR1;
135 ll->rdp = (leptr & 0xFFFF);
136 ll->rap = LE_CSR2;
137 ll->rdp = leptr >> 16;
138 ll->rap = LE_CSR3;
139 ll->rdp = lp->busmaster_regval;
142 ll
220 volatile struct lance_regs *ll = lp->ll; local
245 volatile struct lance_regs *ll = lp->ll; local
324 volatile struct lance_regs *ll = lp->ll; local
414 volatile struct lance_regs *ll = lp->ll; local
462 volatile struct lance_regs *ll = lp->ll; local
486 volatile struct lance_regs *ll = lp->ll; local
502 volatile struct lance_regs *ll = lp->ll; local
524 volatile struct lance_regs *ll = lp->ll; local
535 volatile struct lance_regs *ll = lp->ll; local
609 volatile struct lance_regs *ll = lp->ll; local
[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;

Completed in 227 milliseconds

12345