Searched refs:used (Results 1 - 25 of 522) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dverror_msg.c19 int applet_len, strerr_len, msgeol_len, used; local
27 used = vasprintf(&msg, s, p);
28 if (used < 0)
40 msg = xrealloc(msg, applet_len + used + strerr_len + msgeol_len + 3);
42 memmove(msg + applet_len, msg, used);
43 used += applet_len;
48 msg[used++] = ':';
49 msg[used++] = ' ';
50 strcpy(&msg[used], strerr);
51 used
76 #define used macro
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/tunala/
H A Dbuffer.c7 buf->used = 0;
14 buf->used = 0;
19 return buf->used; }
21 return (MAX_DATA_SIZE - buf->used); }
23 return (buf->used == MAX_DATA_SIZE ? 1 : 0); }
25 return (buf->used < MAX_DATA_SIZE ? 1 : 0); }
27 return (buf->used == 0 ? 1 : 0); }
29 return (buf->used > 0 ? 1 : 0); }
43 unsigned int added = MAX_DATA_SIZE - buf->used;
48 memcpy(buf->data + buf->used, pt
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/tunala/
H A Dbuffer.c7 buf->used = 0;
14 buf->used = 0;
19 return buf->used; }
21 return (MAX_DATA_SIZE - buf->used); }
23 return (buf->used == MAX_DATA_SIZE ? 1 : 0); }
25 return (buf->used < MAX_DATA_SIZE ? 1 : 0); }
27 return (buf->used == 0 ? 1 : 0); }
29 return (buf->used > 0 ? 1 : 0); }
43 unsigned int added = MAX_DATA_SIZE - buf->used;
48 memcpy(buf->data + buf->used, pt
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/h8300/kernel/
H A Dgpio.c57 unsigned char used; member in struct:__anon3468
65 unsigned char *used; local
69 used = &(gpio_regs[port].used);
70 if ((*used & bits) != 0)
72 *used |= bits;
78 unsigned char *used; local
82 used = &(gpio_regs[port].used);
83 if ((*used
127 unsigned char used,ddr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v10/kernel/
H A Dfasttimer.c275 /* If a longer timeout than the timer can handle is used,
618 static unsigned long used; local
622 used = 0;
627 if (!offset || !used)
631 used = 0;
632 used += sprintf(bigbuf + used, "Fast timers added: %i\n",
634 used += sprintf(bigbuf + used, "Fast timers started: %i\n",
636 used
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dversion-check.pl32 # the symbols from that version that are used.
68 my %used;
74 $used{$1}++;
88 my @recent = reverse sort sortversions keys %used;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dtty_flip.h15 if (tb && tb->used < tb->size) {
16 tb->flag_buf_ptr[tb->used] = flag;
17 tb->char_buf_ptr[tb->used++] = ch;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/
H A DMakefile.lib36 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
37 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
38 multi-used := $(multi-used-y) $(multi-used-m)
39 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
43 multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
44 multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y)))
69 single-used
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/
H A DMakefile.lib36 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
37 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
38 multi-used := $(multi-used-y) $(multi-used-m)
39 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
43 multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
44 multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y)))
69 single-used
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/lib/
H A Dcp950ext.h142 unsigned short used = summary->used; local
144 if (used & ((unsigned short) 1 << i)) {
146 /* Keep in `used' only the bits 0..i-1. */
147 used &= ((unsigned short) 1 << i) - 1;
148 /* Add `summary->indx' and the number of bits set in `used'. */
149 used = (used & 0x5555) + ((used & 0xaaaa) >> 1);
150 used
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Dsigio.c25 /* Protected by sigio_lock(), also used by sigio_cleanup, which is an
42 int used; member in struct:pollfds
62 n = poll(fds->poll, fds->used, -1);
68 for(i = 0; i < fds->used; i++){
85 fds->used--;
87 (fds->used - i) * sizeof(*fds->poll));
113 memcpy(new, polls->poll, polls->used * sizeof(struct pollfd));
164 for(i = 0; i < all_sigio_fds.used; i++){
168 if(i == all_sigio_fds.used)
173 for(i = 0; i < current_poll.used;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc/
H A Dbitext.h16 int used; member in struct:bit_map
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/
H A Dtagz.cpp37 UINT size,used; member in class:T_String
39 T_String() {data=0;size=0;used=0;}
45 used=0;
47 else if (size==used)
52 if (data) data[used++]=c;
75 T_CHAR * r=(T_CHAR*)realloc(data,(used+1)*sizeof(T_CHAR));
76 r[used]=0;
82 if (!data || i>=used) return 0;
85 UINT Len() {return data ? used : 0;}
93 used
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn_ctx.c23 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
104 unsigned used, size; member in struct:bignum_pool
146 unsigned int used; member in struct:bignum_ctx
162 while(bnidx < ctx->used)
197 /* This function is an evil legacy and should not be used. This implementation
208 ctx->used = 0;
225 ret->used = 0;
262 else if(!BN_STACK_push(&ctx->stack, ctx->used))
279 if(fp < ctx->used)
280 BN_POOL_release(&ctx->pool, ctx->used
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/kernel/
H A Dfasttimer.c624 static unsigned long used; local
628 used = 0;
633 if (!offset || !used)
637 used = 0;
638 used += sprintf(bigbuf + used, "Fast timers added: %i\n",
640 used += sprintf(bigbuf + used, "Fast timers started: %i\n",
642 used += sprintf(bigbuf + used, "Fas
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/build-aux/
H A Delisp-comp42 so disregarding the original directories used in `.el' arguments.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/oss/dmasound/
H A Ddmasound_atari.c37 static int write_sq_ignore_int; /* ++TeSche: used for Falcon */
54 * return the number of bytes they've used from both streams so you may detect
160 ssize_t count, used; local
166 used = count;
174 *frameUsed += used;
175 return used;
183 ssize_t count, used; local
189 used = count;
192 *frameUsed += used;
193 return used;
201 ssize_t count, used; local
236 ssize_t count, used; local
268 ssize_t count, used; local
307 ssize_t count, used; local
348 ssize_t count, used; local
393 ssize_t used, usedf; local
453 ssize_t used, usedf; local
507 ssize_t used, usedf; local
563 ssize_t used, usedf; local
619 ssize_t used, usedf; local
677 ssize_t used, usedf; local
735 ssize_t used, usedf; local
[all...]
H A Dtrans_16.c4 * 16 bit translation routines. Only used by Power mac at present.
73 ssize_t count, used; local
80 used = count = min_t(unsigned long, userCount, frameLeft);
95 *frameUsed += used * 4;
96 return stereo? used * 2: used;
104 ssize_t count, used; local
111 used = count = min_t(unsigned long, userCount, frameLeft);
126 *frameUsed += used * 4;
127 return stereo? used *
135 ssize_t count, used; local
166 ssize_t count, used; local
195 ssize_t count, used; local
455 ssize_t count, used; local
490 ssize_t count, used; local
524 ssize_t count, used; local
556 ssize_t count, used; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_common/
H A Dcharset.c95 int used; local
99 used = outptr - out;
106 outptr = out + used;
107 outleft = outsize - 1 - used;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dhash.c43 unsigned long used; /* Hash code of the key, or 0 for an unused entry. */ member in struct:hash_entry
160 if (table[idx].used)
162 if (table[idx].used == hval && table[idx].keylen == keylen
177 if (table[idx].used == hval && table[idx].keylen == keylen
181 while (table[idx].used);
196 if (table[idx].used == 0)
214 table[idx].used = hval;
250 if (table[idx].used)
252 table[idx].used,
254 table[idx].used),
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/
H A Dhash.c43 unsigned long used; /* Hash code of the key, or 0 for an unused entry. */ member in struct:hash_entry
160 if (table[idx].used)
162 if (table[idx].used == hval && table[idx].keylen == keylen
177 if (table[idx].used == hval && table[idx].keylen == keylen
181 while (table[idx].used);
196 if (table[idx].used == 0)
214 table[idx].used = hval;
250 if (table[idx].used)
252 table[idx].used,
254 table[idx].used),
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dhash.c43 unsigned long used; /* Hash code of the key, or 0 for an unused entry. */ member in struct:hash_entry
160 if (table[idx].used)
162 if (table[idx].used == hval && table[idx].keylen == keylen
177 if (table[idx].used == hval && table[idx].keylen == keylen
181 while (table[idx].used);
196 if (table[idx].used == 0)
214 table[idx].used = hval;
250 if (table[idx].used)
252 table[idx].used,
254 table[idx].used),
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/infback9/
H A Dinftree9.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
101 The length counts are used for other purposes as well, i.e. finding
145 filled is at next and has curr index bits. The code being used is huff
159 counts are used for this, and so count[] is decremented as codes are
162 used keeps track of how many table entries have been allocated from the
178 base = extra = work; /* dummy value--not used */
202 used = 1U << root; /* use root table entries */
203 mask = used
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/infback9/
H A Dinftree9.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
101 The length counts are used for other purposes as well, i.e. finding
145 filled is at next and has curr index bits. The code being used is huff
159 counts are used for this, and so count[] is decremented as codes are
162 used keeps track of how many table entries have been allocated from the
178 base = extra = work; /* dummy value--not used */
202 used = 1U << root; /* use root table entries */
203 mask = used
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_inflate/
H A Dinftrees.c15 lens shorts, which is used as a work area. type is the type of code
33 unsigned used; /* code entries in table used */ local
85 The length counts are used for other purposes as well, i.e. finding
137 filled is at next and has curr index bits. The code being used is huff
151 counts are used for this, and so count[] is decremented as codes are
154 used keeps track of how many table entries have been allocated from the
170 base = extra = work; /* dummy value--not used */
194 used = 1U << root; /* use root table entries */
195 mask = used
[all...]

Completed in 291 milliseconds

1234567891011>>