Searched refs:first (Results 176 - 200 of 978) sorted by relevance

1234567891011>>

/linux-master/drivers/gpu/drm/xe/
H A Dxe_gt_sriov_pf_config.c504 static int pf_config_bulk_set_u64_done(struct xe_gt *gt, unsigned int first, unsigned int num_vfs, argument
510 xe_gt_assert(gt, first);
512 xe_gt_assert(gt, first <= last);
515 return pf_config_set_u64_done(gt, first, value, get(gt, first), what, err);
519 first, first + num_vfs - 1, what);
520 if (last > first)
521 pf_config_bulk_set_u64_done(gt, first, last - first, valu
843 pf_config_bulk_set_u32_done(struct xe_gt *gt, unsigned int first, unsigned int num_vfs, u32 value, u32 (*get)(struct xe_gt*, unsigned int), const char *what, const char *(*unit)(u32), unsigned int last, int err) argument
[all...]
/linux-master/fs/reiserfs/
H A Dbitmap.c175 /* search for a first zero bit -- beginning of a window */
190 /* first zero bit found; we check next bits */
683 static void print_sep(struct seq_file *seq, int *first) argument
685 if (!*first)
688 *first = 0;
693 int first = 1; local
702 print_sep(seq, &first);
710 print_sep(seq, &first);
718 print_sep(seq, &first);
722 print_sep(seq, &first);
[all...]
/linux-master/drivers/block/drbd/
H A Ddrbd_actlog.c245 unsigned first = i->sector >> (AL_EXTENT_SHIFT-9); local
246 unsigned last = i->size == 0 ? first : (i->sector + (i->size >> 9) - 1) >> (AL_EXTENT_SHIFT-9);
248 D_ASSERT(device, first <= last);
252 if (first != last)
255 return _al_get(device, first, true);
262 unsigned first = i->sector >> (AL_EXTENT_SHIFT-9); local
263 unsigned last = i->size == 0 ? first : (i->sector + (i->size >> 9) - 1) >> (AL_EXTENT_SHIFT-9);
267 D_ASSERT(device, first <= last);
270 for (enr = first; enr <= last; enr++) {
489 unsigned first local
548 unsigned first = i->sector >> (AL_EXTENT_SHIFT-9); local
[all...]
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_tcp_custom_syncookie.c67 u64 first; member in struct:tcp_syncookie
316 u64 first = 0, second; local
327 first = (u64)ctx->ipv4->saddr << 32 | ctx->ipv4->daddr;
335 first = (u64)ctx->ipv6->saddr.in6_u.u6_addr8[0] << 32 |
340 hash = siphash_2u64(first, second, &test_key_siphash);
465 u64 first = 0, second; local
470 first = (u64)ctx->ipv4->saddr << 32 | ctx->ipv4->daddr;
472 first = (u64)ctx->ipv6->saddr.in6_u.u6_addr8[0] << 32 |
476 hash = siphash_2u64(first, second, &test_key_siphash);
/linux-master/scripts/dtc/
H A Dlivetree.c65 struct property *chain_property(struct property *first, struct property *list) argument
67 assert(first->next == NULL);
69 first->next = list;
70 return first;
73 struct property *reverse_properties(struct property *first) argument
75 struct property *p = first;
258 struct node *chain_node(struct node *first, struct node *list) argument
260 assert(first->next_sibling == NULL);
262 first->next_sibling = list;
263 return first;
370 chain_reserve_entry(struct reserve_info *first, struct reserve_info *list) argument
[all...]
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_ipsec.c349 * ixgbe_ipsec_find_empty_idx - find the first unused security parameter index
353 * Returns the first unused index in either the Rx or Tx SA table
569 int checked, match, first; local
602 /* find the first unused index */
637 /* Find an existing match or first not used, and stop looking
642 first = -1;
645 (checked < ipsec->num_rx_sa || first < 0);
654 } else if (first < 0) {
655 first = i; /* track the first empt
1072 ixgbe_ipsec_tx(struct ixgbe_ring *tx_ring, struct ixgbe_tx_buffer *first, struct ixgbe_ipsec_tx_data *itd) argument
[all...]
/linux-master/arch/alpha/lib/
H A Dstxcpy.S43 t0 == the first destination word for masking back in
44 t1 == the first source word. */
51 mskql t0, a1, t0 # e0 : assemble the first output word
57 t0 == the first destination word for masking back in
108 /* We are co-aligned; take care of a partial first word. */
109 ldq_u t1, 0(a1) # e0 : load first src word
123 /* We know just enough now to be able to assemble the first
128 t0 == the first dest word, for masking back in, if needed else 0
129 t1 == the low bits of the first source word
155 stq_u t1, 0(a0) # e0 : store first outpu
[all...]
H A Dev6-stxcpy.S54 t0 == the first destination word for masking back in
55 t1 == the first source word. */
63 mskql t0, a1, t0 # U : assemble the first output word
69 t0 == the first destination word for masking back in
128 /* We are co-aligned; take care of a partial first word. */
129 ldq_u t1, 0(a1) # L : load first src word
146 /* We know just enough now to be able to assemble the first
151 t0 == the first dest word, for masking back in, if needed else 0
152 t1 == the low bits of the first source word
178 stq_u t1, 0(a0) # L : store first outpu
[all...]
H A Dstxncpy.S51 t0 == the first destination word for masking back in
52 t1 == the first source word. */
59 mskql t0, a1, t0 # e0 : assemble the first output word
133 /* We are co-aligned; take care of a partial first word. */
135 ldq_u t1, 0(a1) # e0 : load first src word
149 /* We know just enough now to be able to assemble the first
154 t0 == the first dest word, unmasked
155 t1 == the shifted low bits of the first source word
162 or t1, t4, t1 # e1 : first aligned src word complete
164 or t0, t1, t0 # e0 : first outpu
[all...]
H A Dev6-stxncpy.S62 t0 == the first destination word for masking back in
63 t1 == the first source word. */
71 mskql t0, a1, t0 # U : assemble the first output word
166 /* We are co-aligned; take care of a partial first word. */
167 ldq_u t1, 0(a1) # L : load first src word
188 /* We know just enough now to be able to assemble the first
193 t0 == the first dest word, unmasked
194 t1 == the shifted low bits of the first source word
202 or t1, t4, t1 # E : first aligned src word complete (stall)
204 or t0, t1, t0 # E : first outpu
[all...]
H A Dev67-strchr.S32 ldq_u t0, 0(a0) # L : load first quadword Latency=3
42 mskqh t4, a0, t4 # U : only want relevant part of first quad
/linux-master/drivers/pci/hotplug/
H A Dcpci_hotplug_core.c190 cpci_hp_register_bus(struct pci_bus *bus, u8 first, u8 last) argument
204 for (i = first; i <= last; ++i) {
589 static int first = 1; local
603 status = init_slots(first);
604 if (first)
605 first = 0;
/linux-master/drivers/pnp/
H A Dinterface.c71 int first = 1, i; local
76 if (!first) {
79 first = 0;
104 int first = 1, i; local
110 if (!first) {
113 first = 0;
/linux-master/drivers/irqchip/
H A Dirq-mvebu-sei.c30 u32 first; member in struct:mvebu_sei_interrupt_range
144 msg->data = data->hwirq + sei->caps->cp_range.first;
221 fwspec.param[0] = hwirq + sei->caps->ap_range.first;
273 fwspec.param[0] = hwirq + sei->caps->cp_range.first;
475 .first = 0,
479 .first = 21,
/linux-master/drivers/media/v4l2-core/
H A Dv4l2-mc.c519 struct media_entity *first = entity; local
534 media_graph_walk_start(graph, first);
536 while ((first = media_graph_walk_next(graph))
537 && first != entity)
538 if (is_media_entity_v4l2_subdev(first))
539 pipeline_pm_power_one(first, -change);
/linux-master/fs/bcachefs/
H A Dprintbuf.c462 bool first = true; local
468 if (!first)
470 first = false;
480 bool first = true; local
490 if (!first)
492 first = false;
H A Dmovinggc.c31 struct move_bucket_in_flight *first; member in struct:buckets_in_flight
62 if (!list->first)
63 list->first = new;
112 while ((i = list->first)) {
119 list->first = i->next;
120 if (!list->first)
/linux-master/drivers/dma/
H A Daltera-msgdma.c336 struct msgdma_sw_desc *new, *first = NULL; local
364 if (!first)
365 first = new;
367 list_add_tail(&new->node, &first->tx_list);
371 async_tx_ack(&first->async_tx);
372 first->async_tx.flags = flags;
374 return &first->async_tx;
395 struct msgdma_sw_desc *new, *first = NULL; local
438 if (!first)
439 first
[all...]
/linux-master/arch/s390/kernel/
H A Dsyscall.c72 SYSCALL_DEFINE5(s390_ipc, uint, call, int, first, unsigned long, second,
85 return ksys_ipc(call, first, second, third, ptr, third);
/linux-master/arch/mips/lib/
H A Ddump_tlb.c66 static void dump_tlb(int first, int last) argument
97 for (i = first; i <= last; i++) {
/linux-master/drivers/crypto/ccp/
H A Dccp-crypto-sha.c166 rctx->cmd.u.sha.first = rctx->first;
170 rctx->first = 0;
195 rctx->first = 1;
198 /* Buffer the HMAC key for first update */
242 state.first = rctx->first;
264 rctx->first = state.first;
/linux-master/tools/memory-model/scripts/
H A Dnewlitmushist.sh27 echo Run scripts/initlitmushist.sh first, need litmus repo.
/linux-master/sound/core/oss/
H A Dpcm_plugin.h21 unsigned int first; /* offset to first sample in bits */ member in struct:snd_pcm_channel_area
77 int snd_pcm_plugin_clear(struct snd_pcm_plugin **first);
/linux-master/kernel/
H A Dtaskstats.c215 struct task_struct *tsk, *first; local
226 first = find_task_by_vpid(tgid);
228 if (!first || !lock_task_sighand(first, &flags))
231 if (first->signal->stats)
232 memcpy(stats, first->signal->stats, sizeof(*stats));
237 for_each_thread(first, tsk) {
262 unlock_task_sighand(first, &flags);
/linux-master/tools/testing/selftests/user_events/
H A Ddyn_test.c145 static int check_match(int *check, const char *first, const char *second, bool *match) argument
153 if (reg_event(fd, check, 31, first) == -1)

Completed in 393 milliseconds

1234567891011>>