Searched refs:got (Results 1 - 20 of 20) sorted by relevance

/drivers/infiniband/hw/qib/
H A Dqib_user_pages.c58 size_t got; local
68 for (got = 0; got < num_pages; got += ret) {
70 start_page + got * PAGE_SIZE,
71 num_pages - got, 1, 1,
72 p + got, vma);
83 __qib_release_user_pages(p, got, 0);
/drivers/infiniband/hw/ipath/
H A Dipath_user_pages.c60 size_t got; local
73 for (got = 0; got < num_pages; got += ret) {
75 start_page + got * PAGE_SIZE,
76 num_pages - got, 1, 1,
77 p + got, vma);
88 __ipath_release_user_pages(p, got, 0);
/drivers/tty/hvc/
H A Dhvc_beat.c47 u64 got; local
65 if (beat_get_term_char(vtermno, &got,
67 qlen = got;
H A Dhvc_vio.c89 int got; local
115 got = min(count, pv->left);
116 memcpy(buf, &pv->buf[pv->offset], got);
117 pv->offset += got;
118 pv->left -= got;
122 return got;
H A Dhvcs.c600 int got = 0; local
619 got = hvc_get_chars(unit_address,
622 tty_insert_flip_string(tty, buf, got);
626 if (got)
631 if(got)
634 if (!got) {
H A Dhvsi.c232 unsigned long got; local
234 got = hvc_get_chars(hp->vtermno, buf, count);
236 return got;
377 pr_debug("%s: got >TTY_THRESHOLD_THROTTLE bytes\n", __func__);
418 pr_debug("%s: got %i bytes\n", __func__, chunklen);
428 printk(KERN_ERR "hvsi%i: got malformed packet\n", hp->index);
/drivers/net/ethernet/i825xx/
H A D3c505.c426 pr_debug("%s: send_pcb got NAK\n", dev->name);
742 adapter->got[CMD_CONFIGURE_82586] = 1;
751 adapter->got[CMD_CONFIGURE_ADAPTER_MEMORY] = 1;
761 adapter->got[CMD_LOAD_MULTICAST_LIST] = 1;
771 adapter->got[CMD_SET_STATION_ADDRESS] = 1;
788 adapter->got[CMD_NETWORK_STATISTICS] = 1;
923 adapter->got[CMD_CONFIGURE_ADAPTER_MEMORY] = 0;
928 while (adapter->got[CMD_CONFIGURE_ADAPTER_MEMORY] == 0 && time_before(jiffies, timeout));
942 adapter->got[CMD_CONFIGURE_82586] = 0;
947 while (adapter->got[CMD_CONFIGURE_8258
[all...]
H A D3c505.h261 volatile short got[NUM_TRANSMIT_CMDS]; /* flags for member in struct:__anon2161
/drivers/mtd/devices/
H A Ddoc2001plus.c824 size_t i, size, got, want; local
854 got = 0;
884 MemReadDOC(docptr, &buf[got], size - 2);
885 buf[got + size - 2] = ReadDOC(docptr, Mplus_LastDataRead);
886 buf[got + size - 1] = ReadDOC(docptr, Mplus_LastDataRead);
889 got += size;
908 size_t i, size, got, want; local
936 got = 0;
972 MemWriteDOC(docptr, (unsigned char *) &buf[got], size);
997 got
[all...]
/drivers/input/serio/
H A Dhil_mlc.c450 #define EXPECT(comp, to, got, got_wrong, timed_out) \
451 { HILSE_EXPECT, { .packet = comp }, to, got, got_wrong, timed_out },
452 #define EXPECT_LAST(comp, to, got, got_wrong, timed_out) \
453 { HILSE_EXPECT_LAST, { .packet = comp }, to, got, got_wrong, timed_out },
454 #define EXPECT_DISC(comp, to, got, got_wrong, timed_out) \
455 { HILSE_EXPECT_DISC, { .packet = comp }, to, got, got_wrong, timed_out },
456 #define IN(to, got, got_error, timed_out) \
457 { HILSE_IN, { .packet = 0 }, to, got, got_error, timed_out },
/drivers/usb/misc/
H A Duss720.c475 size_t got = 0; local
479 for (; got < length; got++) {
489 return got;
534 size_t got = 0; local
538 for (; got < length; got++) {
548 return got;
/drivers/block/paride/
H A Dpg.c391 int got[5]; local
404 got[i] = read_reg(dev, i + 1);
406 err = memcmp(expect, got, sizeof(got)) ? -1 : 0;
411 printk("%3x", got[i]);
/drivers/parport/
H A Dparport_pc.c316 size_t got = 0; local
328 while (!(status & 0x08) && got < length) {
336 got += 16;
342 got++;
353 return got;
366 for (; got < length; got++) {
376 return got;
410 size_t got = 0; local
420 for (; got < lengt
461 size_t got; local
490 size_t got; local
[all...]
H A Dparport_ip32.c1114 size_t got; local
1124 got = len;
1127 for (got = 0; got < len; got++) {
1137 return got;
/drivers/scsi/
H A Dscript_asm.pl453 expected <identifier>, got $external
571 expected <register>, got $rest
590 Expected end of line, got $rest
746 expected , <conditional> or end of line, got $1
H A Dosst.c5338 int segs, nbr, max_segs, b_size, order, got;
5374 for (segs=STbuffer->sg_segs=1, got=b_size;
5375 segs < max_segs && got < OS_FRAME_SIZE; ) {
5376 struct page *page = alloc_pages(priority, (OS_FRAME_SIZE - got <= PAGE_SIZE) ? 0 : order);
5382 STbuffer->buffer_size = got;
5387 sg_set_page(&STbuffer->sg[segs], page, (OS_FRAME_SIZE - got <= PAGE_SIZE / 2) ? (OS_FRAME_SIZE - got) : b_size, 0);
5388 got += STbuffer->sg[segs].length;
5389 STbuffer->buffer_size = got;
5396 got, STbuffe
5333 int segs, nbr, max_segs, b_size, order, got; local
[all...]
H A Dst.c3724 int segs, nbr, max_segs, b_size, order, got;
3763 for (segs = STbuffer->frp_segs, got = STbuffer->buffer_size;
3764 segs < max_segs && got < new_size;) {
3769 DEB(STbuffer->buffer_size = got);
3775 got += b_size;
3776 STbuffer->buffer_size = got;
3708 int segs, nbr, max_segs, b_size, order, got; local
/drivers/i2c/busses/
H A Di2c-s3c2410.c637 static int s3c24xx_i2c_clockrate(struct s3c24xx_i2c *i2c, unsigned int *got) argument
664 *got = freq;
704 unsigned int got; local
718 ret = s3c24xx_i2c_clockrate(i2c, &got);
724 dev_info(i2c->dev, "setting freq %d\n", got);
/drivers/net/wireless/libertas/
H A Ddebugfs.c235 struct mrvl_ie_thresholds *got; local
261 got = lbs_tlv_find(tlv_type, subscribed->tlv, sizeof(subscribed->tlv));
262 if (got) {
263 value = got->value;
264 freq = got->freq;
/drivers/media/video/
H A Dbw-qcam.c565 int got = 0; local
606 got++;
632 if (got < len)
633 return got;

Completed in 411 milliseconds