Searched defs:remaining (Results 126 - 150 of 187) sorted by relevance

12345678

/external/elfutils/0.153/src/
H A Dunstrip.c1619 /* Now we can weed out the duplicates. Assign remaining symbols
2289 int remaining;
2291 error_t result = argp_parse (&argp, argc, argv, 0, &remaining, &info);
2286 int remaining; local
H A Delflint.c145 int remaining; local
146 argp_parse (&argp, argc, argv, 0, &remaining, NULL);
152 bool only_one = remaining + 1 == argc;
156 int fd = open (argv[remaining], O_RDONLY);
175 printf ("cannot stat '%s': %m\n", argv[remaining]);
180 process_file (fd, elf, NULL, NULL, argv[remaining], st.st_size,
194 while (++remaining < argc);
H A Dreadelf.c261 int remaining; local
262 argp_parse (&argp, argc, argv, 0, &remaining, NULL);
268 bool only_one = remaining + 1 == argc;
272 int fd = open (argv[remaining], O_RDONLY);
279 process_file (fd, argv[remaining], only_one);
283 while (++remaining < argc);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
H A Dhists.c425 u64 new_total, remaining; local
432 remaining = new_total;
443 remaining -= cumul;
927 u16 remaining = h->nr_rows - h->row_offset; local
928 if (offset > remaining) {
929 offset -= remaining;
1005 u64 new_total, remaining; local
1013 remaining = new_total;
1024 remaining -= cumul;
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.c978 /* Initialize remaining stream parameters */
2239 int64_t remaining; local
2246 remaining = 1000 * (global.limit - global.skip_frames
2254 remaining = limit - input_pos + lagged_count;
2260 estimated_time_left = average_rate ? remaining / average_rate : -1;
/external/chromium_org/v8/src/heap/
H A Dspaces.cc2522 int remaining = local
2524 heap()->CreateFillerObjectAt(allocation_info_.top(), remaining);
/external/elfutils/0.153/libcpu/
H A Di386_parse.c3025 unsigned long int remaining = b->field->bits; local
3026 while (nbits + remaining > 8)
3030 remaining = nbits + remaining - 8;
3035 byte <<= remaining; local
3036 mask <<= remaining; local
3037 nbits += remaining;
/external/libvpx/libvpx/
H A Dvpxenc.c840 /* Initialize remaining stream parameters */
1712 int64_t remaining; local
1719 remaining = 1000 * (global.limit - global.skip_frames
1727 remaining = limit - input_pos + lagged_count;
1733 estimated_time_left = average_rate ? remaining / average_rate : -1;
/external/mdnsresponder/mDNSCore/
H A DuDNS.c67 mDNSs32 remaining = rr->expire - m->timenow; local
69 if (remaining > MIN_UPDATE_REFRESH_TIME)
72 rr->ThisAPInterval = 7 * (remaining/10) + (random ? random : mDNSRandom(remaining/10));
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.c377 int selectval, remaining = len; local
381 while (remaining)
397 num_read = mDNSPlatformReadTCP( sock, ptr, remaining, closed );
399 if (((num_read == 0) && *closed) || (num_read < 0) || (num_read > remaining)) return -1;
402 remaining -= num_read;
1660 // Calculate effective remaining lease of an LLQ
1880 // lastly, free the remaining records (known answers) in NewAnswers list
1970 Log("LLQ from %s in state %s; %##s; type %d; orig lease %d; remaining lease %d; AnswerList %p)",
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc182 int remaining = locals_count % kMaxPushes; local
183 // Emit the remaining pushes.
184 for (int i = 0; i < remaining; i++) {
1180 // Set up the four remaining stack slots.
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc185 int remaining = locals_count % kMaxPushes; local
186 // Emit the remaining pushes.
187 __ PushMultipleTimes(x10 , remaining);
1169 // Set up the four remaining stack slots.
H A Dmacro-assembler-arm64.cc334 // half-word, with remaining bits clear, eg. 0x00001234, 0x0000123400000000.
342 // half-word, with remaining bits set, eg. 0xffff1234, 0xffff1234ffffffff.
2453 const Register& remaining = scratch3; local
2454 Mov(remaining, count / 2);
2468 Sub(remaining, remaining, 1);
2469 Cbnz(remaining, &loop);
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc175 int remaining = locals_count % kMaxPushes; local
176 // Emit the remaining pushes.
177 for (int i = 0; i < remaining; i++) {
1103 // Set up the four remaining stack slots.
/external/chromium_org/v8/src/
H A Djsregexp.h314 OutSet(uint32_t first, ZoneList<unsigned>* remaining) argument
315 : first_(first), remaining_(remaining), successors_(NULL) { }
H A Dapi.cc4573 int remaining,
4577 DCHECK(remaining > 0);
4597 if (written > remaining) return 0;
4571 WriteEndCharacter(uint16_t character, int last_character, int remaining, char* const buffer, bool replace_invalid_utf8) argument
H A Dobjects.cc8960 unsigned remaining = static_cast<unsigned>(vector_length); local
8965 while (remaining > 0) {
8967 uint32_t c = unibrow::Utf8::ValueOf(stream, remaining, &consumed);
8968 DCHECK(consumed > 0 && consumed <= remaining);
8970 remaining -= consumed;
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc190 int remaining = locals_count % kMaxPushes; local
191 // Emit the remaining pushes.
192 __ Subu(sp, sp, Operand(remaining * kPointerSize));
193 for (int i = 0; i < remaining; i++) {
1168 // Set up the four remaining stack slots.
/external/chromium_org/v8/src/mips64/
H A Dfull-codegen-mips64.cc187 int remaining = locals_count % kMaxPushes; local
188 // Emit the remaining pushes.
189 __ Dsubu(sp, sp, Operand(remaining * kPointerSize));
190 for (int i = 0; i < remaining; i++) {
1163 // Set up the four remaining stack slots.
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc174 int remaining = locals_count % kMaxPushes; local
175 // Emit the remaining pushes.
176 for (int i = 0; i < remaining; i++) {
1135 // Set up the four remaining stack slots.
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc175 int remaining = locals_count % kMaxPushes; local
176 // Emit the remaining pushes.
177 for (int i = 0; i < remaining; i++) {
1092 // Set up the four remaining stack slots.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3con.c2867 * then buffer remaining bytes of ciphertext into pending buf,
3072 /* now take all the remaining unsent new ciphertext and
7169 PRInt32 remaining; local
7227 remaining = ssl3_ConsumeHandshakeNumber(ss, 2, &b, &length);
7228 if (remaining < 0)
7231 if ((PRUint32)remaining > length)
7238 while (remaining > 0) {
7241 if (remaining < 2)
7248 remaining -= 2;
7249 if (remaining < le
10223 PRInt32 remaining = 0; local
[all...]
/external/dexmaker/lib/
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...
/external/qemu/qapi-auto-generated/
H A Dqapi-types.h2110 int64_t remaining; member in struct:MigrationStats

Completed in 652 milliseconds

12345678