Searched refs:source (Results 1 - 25 of 290) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/router/jpeg-6b/
H A Drdrle.c83 rle_source_ptr source = (rle_source_ptr) sinfo; local
90 source->header = *rle_hdr_init(NULL);
91 source->header.rle_file = source->pub.input_file;
92 switch (rle_get_setup(&(source->header))) {
115 width = source->header.xmax - source->header.xmin + 1;
116 height = source->header.ymax - source->header.ymin + 1;
117 source
189 rle_source_ptr source = (rle_source_ptr) sinfo; local
207 rle_source_ptr source = (rle_source_ptr) sinfo; local
243 rle_source_ptr source = (rle_source_ptr) sinfo; local
373 rle_source_ptr source; local
[all...]
H A Drdppm.c69 /* Private version of data source object */
144 ppm_source_ptr source = (ppm_source_ptr) sinfo; local
145 FILE * infile = source->pub.input_file;
147 register JSAMPLE *rescale = source->rescale;
150 ptr = source->pub.buffer[0];
162 ppm_source_ptr source = (ppm_source_ptr) sinfo; local
163 FILE * infile = source->pub.input_file;
165 register JSAMPLE *rescale = source->rescale;
168 ptr = source->pub.buffer[0];
182 ppm_source_ptr source local
203 ppm_source_ptr source = (ppm_source_ptr) sinfo; local
229 ppm_source_ptr source = (ppm_source_ptr) sinfo; local
241 ppm_source_ptr source = (ppm_source_ptr) sinfo; local
265 ppm_source_ptr source = (ppm_source_ptr) sinfo; local
298 ppm_source_ptr source = (ppm_source_ptr) sinfo; local
445 ppm_source_ptr source; local
[all...]
H A Drdtarga.c44 /* Private version of data source object */
177 tga_source_ptr source = (tga_source_ptr) sinfo; local
181 ptr = source->pub.buffer[0];
183 (*source->read_pixel) (source); /* Load next pixel into tga_pixel */
184 *ptr++ = (JSAMPLE) UCH(source->tga_pixel[0]);
193 tga_source_ptr source = (tga_source_ptr) sinfo; local
197 register JSAMPARRAY colormap = source->colormap;
199 ptr = source->pub.buffer[0];
201 (*source
214 tga_source_ptr source = (tga_source_ptr) sinfo; local
242 tga_source_ptr source = (tga_source_ptr) sinfo; local
275 tga_source_ptr source = (tga_source_ptr) sinfo; local
302 tga_source_ptr source = (tga_source_ptr) sinfo; local
335 tga_source_ptr source = (tga_source_ptr) sinfo; local
486 tga_source_ptr source; local
[all...]
H A Drdbmp.c48 /* Private version of data source object */
60 JDIMENSION source_row; /* Current source row number */
122 bmp_source_ptr source = (bmp_source_ptr) sinfo; local
123 register JSAMPARRAY colormap = source->colormap;
130 source->source_row--;
132 ((j_common_ptr) cinfo, source->whole_image,
133 source->source_row, (JDIMENSION) 1, FALSE);
137 outptr = source->pub.buffer[0];
153 bmp_source_ptr source = (bmp_source_ptr) sinfo; local
159 source
189 bmp_source_ptr source = (bmp_source_ptr) sinfo; local
243 bmp_source_ptr source = (bmp_source_ptr) sinfo; local
425 bmp_source_ptr source; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dudp.h22 __u16 source; member in struct:udphdr
H A Dif_arcnet.h95 uint8_t source, /* source ARCnet - filled in automagically */ member in struct:arc_hardware
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dudp.h22 __u16 source; member in struct:udphdr
H A Dif_arcnet.h95 uint8_t source, /* source ARCnet - filled in automagically */ member in struct:arc_hardware
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_insformat.h8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
48 source : 9, member in struct:ins_format1
58 source : 9,
66 source : 9, member in struct:ins_format2
76 source : 9,
84 source : 9, member in struct:ins_format3
92 source : 9,
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/aic7xxx_old/
H A Dsequencer.h8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
43 source : 9, member in struct:ins_format1
53 source : 9, member in struct:ins_format2
63 source : 9, member in struct:ins_format3
75 source : 9, member in struct:ins_format1
85 source : 9, member in struct:ins_format2
94 source : 9, member in struct:ins_format3
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/zlib/
H A Dcompress.c11 Compresses the source buffer into the destination buffer. The level
13 length of the source buffer. Upon entry, destLen is the total size of the
21 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
24 const Bytef *source;
31 stream.next_in = (Bytef*)source;
34 /* Check for source > 64K on 16-bit machine: */
61 int ZEXPORT compress (dest, destLen, source, sourceLen)
64 const Bytef *source;
67 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
H A Duncompr.c11 Decompresses the source buffer into the destination buffer. sourceLen is
12 the byte length of the source buffer. Upon entry, destLen is the total
25 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
28 const Bytef *source;
34 stream.next_in = (Bytef*)source;
36 /* Check for source > 64K on 16-bit machine: */
/asus-wl-520gu-7.0.1.45/src/router/busybox/libbb/
H A Dcopy_file.c36 int copy_file(const char *source, const char *dest, int flags) argument
44 lstat(source, &source_stat) < 0) ||
46 stat(source, &source_stat) < 0)) {
47 perror_msg("%s", source);
61 error_msg("`%s' and `%s' are the same file", source, dest);
71 error_msg("%s: omitting directory", source);
100 if ((dp = opendir(source)) == NULL) {
101 perror_msg("unable to open directory `%s'", source);
113 new_source = concat_path_file(source, d->d_name);
124 perror_msg("unable to close directory `%s'", source);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/
H A Dmv.c35 static int manual_rename(const char *source, const char *dest) argument
42 if (stat(source, &source_stat) < 0) {
44 perror_msg("unable to stat `%s'", source);
77 if (copy_file(source, dest, FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS |
81 if (remove_file(source, FILEUTILS_RECUR | FILEUTILS_FORCE) < 0)
87 static int move_file(const char *source, const char *dest) argument
108 if (rename(source, dest) < 0) {
110 return manual_rename(source, dest);
112 perror_msg("unable to rename `%s'", source);
/asus-wl-520gu-7.0.1.45/src/router/samba/source/nmbd/
H A Dnmbd_lmhosts.c47 enum name_source source = LMHOSTS_NAME; local
62 (void)add_name_to_subnet(subrec,name,0x00,(uint16)NB_ACTIVE,PERMANENT_TTL,source,1,&ipaddr);
63 (void)add_name_to_subnet(subrec,name,0x20,(uint16)NB_ACTIVE,PERMANENT_TTL,source,1,&ipaddr);
66 (void)add_name_to_subnet(subrec,name,name_type,(uint16)NB_ACTIVE,PERMANENT_TTL,source,1,&ipaddr);
88 if(!NAME_IS_ACTIVE(namerec) || (namerec->data.source != LMHOSTS_NAME))
H A Dnmbd_incomingrequests.c113 if( namerec && ( (namerec->data.source == SELF_NAME)
114 || (namerec->data.source == PERMANENT_NAME) ) ) {
231 if((namerec != NULL) && (namerec->data.source == WINS_PROXY_NAME)) {
240 && ( (namerec->data.source == SELF_NAME)
241 || (namerec->data.source == PERMANENT_NAME)
262 && ( (namerec->data.source == SELF_NAME)
263 || (namerec->data.source == PERMANENT_NAME) ) ) {
343 if( (namerec->data.source == SELF_NAME) || (namerec->data.source == PERMANENT_NAME) ) {
481 (namerec->data.source
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sparc/lib/
H A Dmemset.S35 #define ZERO_BIG_BLOCK(base, offset, source) \
36 std source, [base + offset + 0x00]; \
37 std source, [base + offset + 0x08]; \
38 std source, [base + offset + 0x10]; \
39 std source, [base + offset + 0x18]; \
40 std source, [base + offset + 0x20]; \
41 std source, [base + offset + 0x28]; \
42 std source, [base + offset + 0x30]; \
43 std source, [base + offset + 0x38];
45 #define ZERO_LAST_BLOCKS(base, offset, source) \
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ppc64/iSeries/
H A DiSeries_io.h41 extern void* iSeries_memcpy_toio(void *dest, void *source, size_t n);
42 extern void* iSeries_memcpy_fromio(void *dest, void *source, size_t n);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ppc64/iSeries/
H A DiSeries_io.h41 extern void* iSeries_memcpy_toio(void *dest, void *source, size_t n);
42 extern void* iSeries_memcpy_fromio(void *dest, void *source, size_t n);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/lib/
H A Dcsum-copy.S18 * rdi source
35 .macro source
66 /* align source to 8 bytes */
98 source
100 source
102 source
104 source
121 source
123 source
125 source
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/rio/
H A Drio_linux.h122 static inline void *rio_memcpy_toio (void *dummy, void *dest, void *source, int n) argument
125 char *src = source;
136 static inline void *rio_memcpy_fromio (void *dest, void *source, int n) argument
139 char *src = source;
148 #define rio_memcpy_toio(dummy,dest,source,n) memcpy_toio(dest, source, n)
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sparc64/lib/
H A DVISmemset.S12 #define SET_BLOCKS(base, offset, source) \
13 stx source, [base - offset - 0x18]; \
14 stx source, [base - offset - 0x10]; \
15 stx source, [base - offset - 0x08]; \
16 stx source, [base - offset - 0x00];
18 #define SET_BLOCKS(base, offset, source) \
19 stw source, [base - offset - 0x18]; \
20 stw source, [base - offset - 0x14]; \
21 stw source, [base - offset - 0x10]; \
22 stw source, [bas
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390/lib/
H A Dmemset.S22 SR 4,4 # no source for MVCLE, only a pad byte
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390x/lib/
H A Dmemset.S22 SGR 4,4 # no source for MVCLE, only a pad byte
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/netfilter/
H A Dip_nat_starcraft.c81 NIPQUAD(iph->saddr), ntohs(tcph->source),
166 printk("POST: %x %x\n", ntohs(udph->source), (unsigned int)(ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.ip));
168 if (ntohs(udph->source)==BAT_PORT)
176 NIPQUAD((*pskb)->nh.iph->saddr), ntohs(udph->source),
193 NIPQUAD((*pskb)->nh.iph->saddr), ntohs(udph->source),
228 NIPQUAD(iph->saddr), ntohs(udph->source),
238 printk("post: %x %x %x\n", iph->saddr, udph->source, ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.ip);
241 if (ntohs(udph->source) == BAT_PORT)
249 udph->source = htons(10000 + port);
251 printk("post 3: %x\n", udph->source);
[all...]

Completed in 333 milliseconds

1234567891011>>