| /src/external/lgpl3/gmp/dist/mini-gmp/tests/ |
| t-import.c | 49 size_t count, in_count, out_count, size; local 62 mini_rrandomb_export (a, input, &in_count, 64 mpz_import (res, in_count, order, size, endian, 0, input); 68 "in_count %lu, out_count %lu, endian = %d, order = %d\n", 69 (unsigned long) in_count, (unsigned long) out_count, endian, order); 75 output[1+in_count*size] = 17; 78 if (out_count != in_count 79 || memcmp (output+1, input, in_count * size) 81 || output[1+in_count*size] != 17) 84 "in_count %lu, out_count %lu, endian = %d, order = %d\n" [all...] |
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_write_add_filter_compress.c | 89 int64_t in_count, out_count, checkpoint; member in struct:private_data 184 state->in_count = 0; /* Length of input. */ 344 if (state->in_count == 0) { 346 ++state->in_count; 352 state->in_count++; 387 if (state->in_count < state->checkpoint) 390 state->checkpoint = state->in_count + CHECK_GAP; 392 if (state->in_count <= 0x007fffff && state->out_count != 0) 393 ratio = (int)(state->in_count * 256 / state->out_count); 397 ratio = (int)(state->in_count / ratio) [all...] |
| /src/sys/net/ |
| bsd-comp.c | 98 u_int in_count; /* uncompressed bytes, aged */ member in struct:bsd_db 207 db->in_count = 0; 229 if (db->in_count >= db->checkpoint) { 231 if (db->in_count >= RATIO_MAX 233 db->in_count -= db->in_count/4; 237 db->checkpoint = db->in_count + CHECK_GAP; 245 * db->in_count <= RATIO_MAX. 247 new_ratio = db->in_count << RATIO_SCALE_LOG; 276 stats->ratio = db->in_count; [all...] |
| /src/usr.bin/compress/ |
| zopen.c | 159 #define in_count zs->zs_in_count macro 268 in_count = 1; 286 in_count++; 314 } else if ((count_int)in_count >= 630 checkpoint = in_count + CHECK_GAP; 632 if (in_count > 0x007fffff) { /* Shift will overflow. */ 637 rat = in_count / rat; 639 rat = (in_count << 8) / bytes_out; /* 8 fractional bits. */ 675 in_count = 1; /* Length of input. */
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-ssa-loop-manip.cc | 1459 profile_count in_count = loop_preheader_edge (loop)->count (); local 1461 if (in_count.nonzero_p () 1467 = (in_count.apply_scale (new_est_niter + 1, 1)); 1490 profile_count new_latch_count = loop->header->count - in_count;
|