Searched refs:bytes (Results 1 - 25 of 354) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/sn/kernel/sn2/
H A Dcache.c16 * @bytes: number of bytes to flush
20 * @flush_addr to @flush_addr + @bytes are flushed
24 sn_flush_all_caches(long flush_addr, long bytes) argument
26 flush_icache_range(flush_addr, flush_addr+bytes);
/asus-wl-520gu-7.0.1.45/src/include/
H A Dbcmendian.h108 htol16_ua_store(uint16 val, uint8 *bytes) argument
110 bytes[0] = val&0xff;
111 bytes[1] = val>>8;
118 htol32_ua_store(uint32 val, uint8 *bytes) argument
120 bytes[0] = val&0xff;
121 bytes[1] = (val>>8)&0xff;
122 bytes[2] = (val>>16)&0xff;
123 bytes[3] = val>>24;
130 hton16_ua_store(uint16 val, uint8 *bytes) argument
132 bytes[
140 hton32_ua_store(uint32 val, uint8 *bytes) argument
152 ltoh16_ua(void *bytes) argument
161 ltoh32_ua(void *bytes) argument
171 ntoh16_ua(void *bytes) argument
180 ntoh32_ua(void *bytes) argument
[all...]
H A Dflashutl.h21 int sysFlashRead(uint off, uchar *dst, uint bytes);
22 int sysFlashWrite(uint off, uchar *src, uint bytes);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sparc/
H A Dxor.h24 sparc_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
26 int lines = bytes / (sizeof (long)) / 8;
61 sparc_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
64 int lines = bytes / (sizeof (long)) / 8;
112 sparc_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
115 int lines = bytes / (sizeof (long)) / 8;
176 sparc_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
179 int lines = bytes / (sizeof (long)) / 8;
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sparc/
H A Dxor.h24 sparc_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
26 int lines = bytes / (sizeof (long)) / 8;
61 sparc_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
64 int lines = bytes / (sizeof (long)) / 8;
112 sparc_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
115 int lines = bytes / (sizeof (long)) / 8;
176 sparc_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
179 int lines = bytes / (sizeof (long)) / 8;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/
H A Dfbcon-iplan2p2.c4 * planes, 2 bytes interleave)
30 * Interleaved bitplanes � la Atari (2 planes, 2 bytes interleave)
57 /* Sets the bytes in the visible column at d, height h, to the value
59 * moved (8 times) to the respective bytes. This means:
75 /* Sets a 2 plane region from 'd', length 'count' bytes, to the color
164 * bytes are affected and are to be stored in the same order.
166 * address to an even or vice versa. Since the bytes in the plane
182 int bytes = p->next_line; local
188 linesize = bytes << fontheightlog(p);
191 linesize = bytes * fontheigh
270 int bytes = p->next_line; local
327 int bytes = p->next_line; local
357 int bytes; local
391 int bytes; local
416 int bytes; local
[all...]
H A Dfbcon-iplan2p4.c4 * planes, 2 bytes interleave)
30 * Interleaved bitplanes � la Atari (4 planes, 2 bytes interleave)
51 /* Sets the bytes in the visible column at d, height h, to the value
53 * moved (8 times) to the respective bytes. This means:
71 /* Sets a 4 plane region from 'd', length 'count' bytes, to the color
172 * bytes are affected and are to be stored in the same order.
174 * address to an even or vice versa. Since the bytes in the plane
190 int bytes = p->next_line; local
196 linesize = bytes << fontheightlog(p);
199 linesize = bytes * fontheigh
281 int bytes = p->next_line; local
337 int bytes = p->next_line; local
367 int bytes; local
408 int bytes; local
436 int bytes; local
[all...]
H A Dfbcon-cfb2.c30 * avoids us having to mask bytes and means we won't be here
60 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; local
63 if (sx == 0 && dx == 0 && width * 2 == bytes) {
74 src += bytes;
75 dst += bytes;
80 - bytes;
82 - bytes;
85 src -= bytes;
86 dst -= bytes;
96 int bytes=p->next_line,lines=height * fontheight(p), rows, i; local
128 int bytes=p->next_line,rows; local
153 int rows,bytes=p->next_line; local
180 int bytes=p->next_line, rows; local
[all...]
H A Dfbcon-cfb4.c30 * avoids us having to mask bytes and means we won't be here
60 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; local
63 if (sx == 0 && dx == 0 && width * 4 == bytes) {
74 src += bytes;
75 dst += bytes;
80 - bytes;
82 - bytes;
85 src -= bytes;
86 dst -= bytes;
96 int bytes=p->next_line,lines=height * fontheight(p), rows, i; local
130 int bytes=p->next_line,rows; local
155 int rows,bytes=p->next_line; local
184 int bytes=p->next_line, rows; local
[all...]
H A Dfbcon-cfb8.c51 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; local
54 if (sx == 0 && dx == 0 && width * fontwidth(p) == bytes) {
70 src += bytes;
71 dst += bytes;
74 src = p->screen_base + (sy+height) * linesize + sx - bytes;
75 dst = p->screen_base + (dy+height) * linesize + dx - bytes;
78 src -= bytes;
79 dst -= bytes;
97 int bytes local
115 int bytes=p->next_line,rows; local
162 int rows,bytes=p->next_line; local
220 int bytes=p->next_line, rows; local
237 int bytes=p->next_line; local
[all...]
H A Dfbcon-iplan2p8.c4 * planes, 2 bytes interleave)
30 * Interleaved bitplanes � la Atari (8 planes, 2 bytes interleave)
61 /* Sets the bytes in the visible column at d, height h, to the value
63 * moved (8 times) to the respective bytes. This means:
86 /* Sets a 8 plane region from 'd', length 'count' bytes, to the color
204 * bytes are affected and are to be stored in the same order.
206 * address to an even or vice versa. Since the bytes in the plane
222 int bytes = p->next_line; local
228 linesize = bytes << fontheightlog(p);
231 linesize = bytes * fontheigh
313 int bytes = p->next_line; local
369 int bytes = p->next_line; local
399 int bytes; local
442 int bytes; local
472 int bytes; local
[all...]
H A Dfbcon-cfb16.c46 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; local
49 if (sx == 0 && dx == 0 && width * fontwidth(p) * 2 == bytes) {
69 src += bytes;
70 dst += bytes;
73 src = p->screen_base + (sy+height) * linesize + sx - bytes;
74 dst = p->screen_base + (dy+height) * linesize + dx - bytes;
77 src -= bytes;
78 dst -= bytes;
108 int bytes local
126 int bytes = p->next_line, rows; local
177 int rows, bytes = p->next_line; local
234 int bytes = p->next_line, rows; local
261 int bytes = p->next_line; local
[all...]
H A Dfbcon-cfb24.c35 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; local
38 if (sx == 0 && dx == 0 && width * fontwidth(p) * 3 == bytes) {
59 src += bytes;
60 dst += bytes;
63 src = p->screen_base + (sy+height) * linesize + sx - bytes;
64 dst = p->screen_base + (dy+height) * linesize + dx - bytes;
67 src -= bytes;
68 dst -= bytes;
122 int bytes local
140 int bytes = p->next_line, rows; local
190 int rows, bytes = p->next_line; local
242 int bytes = p->next_line, rows; local
273 int bytes = p->next_line; local
[all...]
H A Dfbcon-cfb32.c35 int bytes = p->next_line, linesize = bytes * fontheight(p), rows; local
38 if (sx == 0 && dx == 0 && width * fontwidth(p) * 4 == bytes) {
58 src += bytes;
59 dst += bytes;
62 src = p->screen_base + (sy+height) * linesize + sx - bytes;
63 dst = p->screen_base + (dy+height) * linesize + dx - bytes;
66 src -= bytes;
67 dst -= bytes;
99 int bytes local
117 int bytes = p->next_line, rows; local
163 int rows, bytes = p->next_line; local
211 int bytes = p->next_line, rows; local
247 int bytes = p->next_line; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/acpi/executer/
H A Dexutils.c309 * DESCRIPTION: Convert a 32-bit value to big-endian (swap the bytes)
319 u8 bytes[4]; member in union:__anon762
324 u8 bytes[4]; member in union:__anon763
333 out.bytes[0] = in.bytes[3];
334 out.bytes[1] = in.bytes[2];
335 out.bytes[2] = in.bytes[1];
336 out.bytes[
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/sn/kernel/sn1/
H A Dcache.c31 * @bytes: number of bytes to flush
34 * fully or partially contained within @flush_addr to @flush_addr + @bytes
38 sn_flush_all_caches(long flush_addr, long bytes) argument
49 flush_icache_range(flush_addr, flush_addr+bytes);
58 if (bytes > SYNERGY_L4_BYTES_PER_WAY)
59 bytes = SYNERGY_L4_BYTES_PER_WAY;
61 eaddr = (baddr+bytes+SYNERGY_BLOCK_SIZE-1) & ~(SYNERGY_BLOCK_SIZE-1);
/asus-wl-520gu-7.0.1.45/src/router/libbcmcrypto/openssl/
H A Dpq_compat.h98 #define pq_64bit_bin2num(bn, bytes, len) BN_bin2bn_b(bytes, len, bn)
99 #define pq_64bit_num2bin(bn, bytes) BN_bn2bin_b(bn, bytes)
138 #define pq_64bit_bin2num(num, bytes, len) bytes_to_long_long(bytes, num)
139 #define pq_64bit_num2bin(num, bytes) long_long_to_bytes(num, bytes)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-arm/
H A Dxor.h47 xor_arm4regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
49 unsigned int lines = bytes / sizeof(unsigned long) / 4;
67 xor_arm4regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
70 unsigned int lines = bytes / sizeof(unsigned long) / 4;
89 xor_arm4regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
92 unsigned int lines = bytes / sizeof(unsigned long) / 2;
108 xor_arm4regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
111 unsigned int lines = bytes / sizeof(unsigned long) / 2;
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-arm/
H A Dxor.h47 xor_arm4regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
49 unsigned int lines = bytes / sizeof(unsigned long) / 4;
67 xor_arm4regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
70 unsigned int lines = bytes / sizeof(unsigned long) / 4;
89 xor_arm4regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
92 unsigned int lines = bytes / sizeof(unsigned long) / 2;
108 xor_arm4regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
111 unsigned int lines = bytes / sizeof(unsigned long) / 2;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/alpha/lib/
H A Dev6-memcpy.S8 * - uses bcmpge to compare 8 bytes in parallel
67 ldq $1, 0($17) # L : get 8 bytes
84 wh64 ($7) # L1 : memory subsystem hint: 64 bytes at
86 ldq $6, 0($17) # L0 : bytes 0..7
90 ldq $4, 8($17) # L : bytes 8..15
91 ldq $5, 16($17) # L : bytes 16..23
95 ldq $3, 24($17) # L : bytes 24..31
100 addq $17, 32, $17 # E : src += 32 bytes
101 stq $6, 0($16) # L : bytes 0..7
105 stq $4, 8($16) # L : bytes
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/arch/mips/cpu/sb1250/src/
H A Ddev_jtag.c240 int bytes = blen > softc->waiting_input ? softc->waiting_input : blen; local
244 for (i=0; i<bytes; i++) {
249 softc->waiting_input -= bytes;
250 blen -= bytes;
305 int blen, bytes, i; local
312 bytes = (blen > 7) ? 7 : blen;
313 data = bytes;
314 for (i=0; i<bytes; i++) {
318 if (bytes < 7)
319 data <<= 8 * (7-bytes);
[all...]
/asus-wl-520gu-7.0.1.45/src/shared/
H A Dcfe_osl.c98 osl_pktpush(struct lbuf *lb, uint bytes) argument
100 ASSERT((lb->data - bytes) >= lb->head);
102 lb->data -= bytes;
103 lb->len += bytes;
109 osl_pktpull(struct lbuf *lb, uint bytes) argument
111 ASSERT((lb->data + bytes) <= lb->end);
112 ASSERT(lb->len >= bytes);
114 lb->data += bytes;
115 lb->len -= bytes;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/lib/
H A Dmemzero.S17 * Align the pointer in r0. r3 contains the number of bytes that we are
18 * mis-aligned by, and r1 is the number of bytes. If r1 < 4, then we
22 blt 5f @ 1 bytes to align with?
41 blt 4f @ 1 have < 16 bytes
50 3: subs r1, r1, #64 @ 1 write 32 bytes out per loop
63 tst r1, #16 @ 1 16 bytes or more?
67 4: tst r1, #8 @ 1 8 bytes or more?
69 tst r1, #4 @ 1 4 bytes or more?
72 * When we get here, we've got less than 4 bytes to zero. We
75 5: tst r1, #2 @ 1 2 bytes o
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/mtd/devices/
H A Dsflash.c82 int bytes, ret = 0; local
94 if ((bytes = sflash_read(sflash->sbh, sflash->cc, (uint) from, len, buf)) < 0) {
95 ret = bytes;
98 from += (loff_t) bytes;
99 len -= bytes;
100 buf += bytes;
101 *retlen += bytes;
113 int bytes, ret = 0; local
125 if ((bytes = sflash_write(sflash->sbh, sflash->cc, (uint) to, len, buf)) < 0) {
126 ret = bytes;
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-i386/
H A Dxor.h44 xor_pII_mmx_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
46 unsigned long lines = bytes >> 7;
88 xor_pII_mmx_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
91 unsigned long lines = bytes >> 7;
138 xor_pII_mmx_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
141 unsigned long lines = bytes >> 7;
194 xor_pII_mmx_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
197 unsigned long lines = bytes >> 7;
268 xor_p5_mmx_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
270 unsigned long lines = bytes >>
316 xor_p5_mmx_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3) argument
374 xor_p5_mmx_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4) argument
441 xor_p5_mmx_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4, unsigned long *p5) argument
589 xor_sse_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
642 xor_sse_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3) argument
703 xor_sse_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4) argument
771 xor_sse_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, unsigned long *p3, unsigned long *p4, unsigned long *p5) argument
[all...]

Completed in 212 milliseconds

1234567891011>>