Searched refs:amount (Results 1 - 25 of 91) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/basic/
H A DWeight.java14 * Weight represents a weight amount and unit of measure.
26 private double amount; field in class:Weight
29 public Weight(double amount, String units) { argument
31 this.amount = amount;
37 return amount;
47 return "[" + amount + ' ' + units + ']';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/entity/
H A DWeight.java14 * Weight represents a weight amount and unit of measure.
26 private double amount; field in class:Weight
29 public Weight(double amount, String units) { argument
31 this.amount = amount;
37 return amount;
47 return "[" + amount + ' ' + units + ']';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/factory/
H A DWeight.java14 * Weight represents a weight amount and unit of measure.
26 private double amount; field in class:Weight
29 public Weight(double amount, String units) { argument
31 this.amount = amount;
37 return amount;
47 return "[" + amount + ' ' + units + ']';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/index/
H A DWeight.java14 * Weight represents a weight amount and unit of measure.
26 private double amount; field in class:Weight
29 public Weight(double amount, String units) { argument
31 this.amount = amount;
37 return amount;
47 return "[" + amount + ' ' + units + ']';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/marshal/
H A DWeight.java14 * Weight represents a weight amount and unit of measure.
26 private double amount; field in class:Weight
29 public Weight(double amount, String units) { argument
31 this.amount = amount;
37 return amount;
47 return "[" + amount + ' ' + units + ']';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/sentity/
H A DWeight.java14 * Weight represents a weight amount and unit of measure.
26 private double amount; field in class:Weight
29 public Weight(double amount, String units) { argument
31 this.amount = amount;
37 return amount;
47 return "[" + amount + ' ' + units + ']';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/tuple/
H A DWeight.java14 * Weight represents a weight amount and unit of measure.
26 private double amount; field in class:Weight
29 public Weight(double amount, String units) { argument
31 this.amount = amount;
37 return amount;
47 return "[" + amount + ' ' + units + ']';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/math-emu/
H A Dhppa.h27 /* amount is assumed to be a constant between 0 and 32 (non-inclusive) */
28 #define Shiftdouble(left,right,amount,dest) \
29 /* int left, right, amount, dest; */ \
30 dest = ((left) << (32-(amount))) | ((unsigned int)(right) >> (amount))
32 /* amount must be less than 32 */
33 #define Variableshiftdouble(left,right,amount,dest) \
34 /* unsigned int left, right; int amount, dest; */ \
35 if (amount == 0) dest = right; \
36 else dest = ((((unsigned) left)&0x7fffffff) << (32-(amount))) | \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/libunarchive/
H A Dseek_by_jump.c9 void seek_by_jump(const archive_handle_t *archive_handle, const unsigned int amount) argument
11 if (lseek(archive_handle->src_fd, (off_t) amount, SEEK_CUR) == (off_t) -1) {
14 seek_by_read(archive_handle, amount);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dpercpu_counter.h29 static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount) argument
32 fbc->count = amount;
41 void percpu_counter_mod(struct percpu_counter *fbc, s32 amount);
70 static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount) argument
72 fbc->count = amount;
80 percpu_counter_mod(struct percpu_counter *fbc, s32 amount) argument
83 fbc->count += amount;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dnoise_bsf.c28 int amount= args ? atoi(args) : (*state % 10001+1); local
36 if(*state % amount == 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavdevice/
H A Dbeosaudio.cpp117 size_t len, amount; local
134 amount = MIN(len, (AUDIO_BUFFER_SIZE - s->output_index));
135 memcpy(buf, &s->buffer[s->output_index], amount);
136 s->output_index += amount;
139 memcpy(buf + amount, &s->buffer[s->output_index], len - amount);
140 s->output_index += len-amount;
158 size_t len, amount; local
172 amount = MIN(len, (AUDIO_BUFFER_SIZE - s->input_index));
173 memcpy(&s->buffer[s->input_index], buf, amount);
315 int amount; local
382 size_t len, amount; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dpercpu_counter.c8 void percpu_counter_mod(struct percpu_counter *fbc, s32 amount) argument
15 count = *pcount + amount;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dgopher.c119 ssize_t amount, k; local
153 result = Curl_write(conn, sockfd, sel, k, &amount);
155 result = Curl_client_write(conn, CLIENTWRITE_HEADER, sel, amount);
160 k -= amount;
161 sel += amount;
H A Durl.h50 struct conncache *Curl_mk_connc(int type, long amount);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/iseries/
H A Dmf.h38 unsigned size, unsigned amount, MFCompleteHandler hdlr,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/include/
H A Dunarchive.h55 void (*seek)(const struct archive_handle_t *archive_handle, const unsigned amount);
93 extern void seek_by_jump(const archive_handle_t *archive_handle, const unsigned amount);
94 extern void seek_by_read(const archive_handle_t *archive_handle, const unsigned amount);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_urlglob.c43 * Input a full globbed string, set the forth argument to the amount of
52 size_t pos, int *amount)
136 *amount = pat->content.Set.size * wordamount;
167 size_t pos, int *amount)
276 *amount = wordamount * (pat->content.CharRange.max_c -
279 *amount = wordamount * (pat->content.NumRange.max_n -
287 size_t pos, int *amount)
296 *amount = 1; /* default is one single string */
334 res = glob_set(glob, ++pattern, ++pos, amount);
339 res = glob_range(glob, ++pattern, ++pos, amount);
51 glob_set(URLGlob *glob, char *pattern, size_t pos, int *amount) argument
166 glob_range(URLGlob *glob, char *pattern, size_t pos, int *amount) argument
286 glob_word(URLGlob *glob, char *pattern, size_t pos, int *amount) argument
356 int amount; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/libtest/
H A Dlib552.c127 size_t amount = nmemb * size; /* Total bytes curl wants */ local
129 size_t given = amount < available ? amount : available; /* What is given */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/
H A Dcryptlib.c127 static int (MS_FAR *add_lock_callback)(int *pointer,int amount,
433 int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file, argument
444 ret=add_lock_callback(pointer,amount,type,file,line);
448 before,amount,ret,
457 ret= *pointer+amount;
461 *pointer,amount,ret,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/smbfs/
H A Dsock.c159 smb_move_iov(struct kvec **data, size_t *num, struct kvec *vec, unsigned amount) argument
168 while (iv->iov_len <= amount) {
169 amount -= iv->iov_len;
177 vec[0].iov_len = iv->iov_len-amount;
178 vec[0].iov_base =((unsigned char *)iv->iov_base)+amount;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pci/hotplug/
H A Dibmphp_pci.c1071 * This function adds up the amount of resources needed behind the PPB bridge
1074 * Ouput: amount of resources needed
1095 struct res_needed *amount; local
1097 amount = kzalloc(sizeof(*amount), GFP_KERNEL);
1098 if (amount == NULL)
1106 amount->devices[device] = 0;
1122 amount->not_correct = 1;
1123 return amount;
1130 amount
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/
H A Dcryptlib.c186 static int (MS_FAR *add_lock_callback)(int *pointer,int amount,
492 int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file, argument
503 ret=add_lock_callback(pointer,amount,type,file,line);
507 before,amount,ret,
516 ret= *pointer+amount;
520 *pointer,amount,ret,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/
H A Dsoundfont.h126 int snd_sf_linear_to_log(unsigned int amount, int offset, int ratio);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/ms/
H A Duplink.pl70 _OPENSSL_UplinkTable DD $N ; amount of following entries
102 _OPENSSL_UplinkTable DD $N ; amount of following entries
132 OPENSSL_UplinkTable: data8 $N // amount of following entries

Completed in 217 milliseconds

1234