Searched refs:amt (Results 1 - 21 of 21) sorted by relevance

/asus-wl-520gu-7.0.1.45/src/cfe/cfe/net/
H A Dnet_ebuf.h94 #define ebuf_prepend(eb,amt) (eb)->eb_ptr -= amt; (eb)->eb_length += (amt)
95 #define ebuf_adjust(eb,amt) (eb)->eb_ptr += (amt); (eb)->eb_length += (amt)
96 #define ebuf_seek(eb,amt) (eb)->eb_ptr += (amt)
101 #define ebuf_setlength(eb,amt) (eb)->eb_length = (amt)
[all...]
H A Dnet_tcpbuf.h73 void tmb_adjust(tcpmodbuf_t *buf,int amt);
H A Dnet_tcpbuf.c80 * tmb_adjust(buf,amt)
82 * Move the "remove" pointer ahead by 'amt' without retrieving the
87 * amt - number of bytes to move
94 void tmb_adjust(tcpmodbuf_t *buf,int amt) argument
96 buf->tmb_len -= amt;
97 buf->tmb_remptr = (buf->tmb_remptr + amt) % buf->tmb_bufsize;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc/platforms/
H A Dpal4_setup.c111 unsigned long len, amt, batu, batl; local
122 amt = cpc700_read_memreg(i);
123 if (amt == 0)
125 len = amt;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/sound/
H A Dnm256_audio.c243 nm256_startRecording (struct nm256_info *card, char *buffer, u32 amt) argument
250 if (amt > (ringsize / 2)) {
256 printk (KERN_ERR "NM256: Read request too large: %d\n", amt);
257 amt = ringsize / 2;
260 if (amt < 8) {
261 printk (KERN_ERR "NM256: Read request too small; %d\n", amt);
296 endpos = card->abuf2 + ((card->curRecPos + amt) % ringsize);
299 card->requestedRecAmt = amt;
353 nm256_write_block (struct nm256_info *card, char *buffer, u32 amt) argument
359 if (amt > (ringsiz
429 u32 amt = nm256_readPort32 (card, 2, NM_PBUFFER_CURRP) - card->abuf1; local
484 u32 amt = MIN (ringsize - card->curRecPos, amtToRead); local
497 u32 amt = MIN (currptr - card->curRecPos, amtToRead); local
[all...]
H A Dnm256.h265 int amt)
268 memcpy_toio (card->port[port - 1].ptr + offset, src, amt);
274 int amt)
277 memcpy_fromio (dst, card->port[port - 1].ptr + offset, amt);
264 nm256_writeBuffer8(struct nm256_info *card, u8 *src, int port, int offset, int amt) argument
273 nm256_readBuffer8(struct nm256_info *card, u8 *dst, int port, int offset, int amt) argument
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/
H A Ddgrs.c535 int amt; local
538 amt = count & 0x3fff;
539 if (amt == 0)
550 ddp_h->len = amt;
552 phys_p += amt;
553 p += amt;
603 int amt; local
607 amt = count & 0x3fff;
608 if (amt == 0)
617 S2DMA(tbdp->buf), amt,
639 int amt; local
697 int i, len, amt; local
[all...]
H A Dde600.c804 int amt;
814 amt = min_t(int, (sk->rcvbuf-atomic_read(&sk->rmem_alloc))/2/*-DE600_MIN_WINDOW*/, DE600_MAX_WINDOW);
815 if (amt < 0) return(0);
816 return(amt);
801 int amt; local
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/x86emu/
H A Dx86emu.h190 void X86EMU_dump_memory(u16 seg, u16 off, u32 amt);
H A Ddebug.c221 void X86EMU_dump_memory (u16 seg, u16 off, u32 amt) argument
229 while (end <= off + amt) {
H A Dops.c8144 u8 amt; local
8190 amt = fetch_byte_imm();
8191 DECODE_PRINTF2(",%x\n", amt);
8194 destval = (*opcD0_byte_operation[rh]) (destval, amt);
8200 amt = fetch_byte_imm();
8201 DECODE_PRINTF2(",%x\n", amt);
8204 destval = (*opcD0_byte_operation[rh]) (destval, amt);
8210 amt = fetch_byte_imm();
8211 DECODE_PRINTF2(",%x\n", amt);
8214 destval = (*opcD0_byte_operation[rh]) (destval, amt);
8264 u8 amt; local
9132 u8 amt; local
9222 u8 amt; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Dsock.h1203 int amt = 0; local
1206 amt = sk->sndbuf - atomic_read(&sk->wmem_alloc);
1207 if (amt < 0)
1208 amt = 0;
1210 return amt;
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Dsock.h1275 int amt = 0; local
1278 amt = sk->sndbuf - atomic_read(&sk->wmem_alloc);
1279 if (amt < 0)
1280 amt = 0;
1282 return amt;
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/ui/
H A Dui_command.c376 static void _dumpindented(char *str,int amt) argument
388 for (idx = 0; idx < amt; idx++) printf(" ");
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/storage/
H A Dusb.c265 int amt; local
300 amt = sg[i].length > len-transferred ?
302 memcpy(sg[i].address, data+transferred, amt);
303 transferred -= amt;
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/
H A Dtcp.c285 #define TCP_PAGES(amt) (((amt)+TCP_MEM_QUANTUM-1)/TCP_MEM_QUANTUM)
289 int amt = TCP_PAGES(size); local
291 sk->forward_alloc += amt*TCP_MEM_QUANTUM;
292 atomic_add(amt, &tcp_memory_allocated);
338 sk->forward_alloc -= amt*TCP_MEM_QUANTUM;
339 atomic_sub(amt, &tcp_memory_allocated);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/
H A Dn_tty.c902 static inline int input_available_p(struct tty_struct *tty, int amt) argument
907 } else if (tty->read_cnt >= (amt ? amt : 1))
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/
H A Dqla1280.c257 #define BZERO(ptr, amt) memset(ptr, 0, amt)
258 #define BCOPY(src, dst, amt) memcpy(dst, src, amt)
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/ifpsp060/src/
H A Dpfpsp.S1453 neg.w %d0 # -shft amt
1485 neg.w %d0 # -shft amt
2316 addi.w &0x3f81,%d0 # find amt to shift
3460 mov.l &11,%d0 # load shift amt
3909 mov.l %a0,%d0 # pass amt to inc by
3920 mov.l %a0,%d0 # pass amt to dec by
5917 # %d1 = "n" = amt to shift
5943 cmpi.w %d1, &29 # is shft amt >= 29
5969 # %d1 = "n" = amt to shift
6029 # %d1 = amt t
[all...]
H A Dfpsp.S1454 neg.w %d0 # -shft amt
1486 neg.w %d0 # -shft amt
2317 addi.w &0x3f81,%d0 # find amt to shift
3461 mov.l &11,%d0 # load shift amt
7637 neg.w %d0 # new exp = -(shft amt)
9623 cmpi.w %d0,&-0x3fff # is the shft amt really low?
9658 addi.w &0x3fff,%d0 # turn src amt into exp value
18111 movq.l &0x1,%d0 # pass amt to inc by
18129 movq.l &0x1,%d0 # pass amt to dec by
19396 mov.l %a0,%d0 # pass amt t
[all...]
H A Dfplsp.S7531 neg.w %d0 # new exp = -(shft amt)
9264 cmpi.w %d0,&-0x3fff # is the shft amt really low?
9299 addi.w &0x3fff,%d0 # turn src amt into exp value
10960 sub.w &32, %d1 # adjust shft amt by 32

Completed in 290 milliseconds