/external/e2fsprogs/e2fsck/ |
profile_helpers.c | 45 int max; member in struct:profile_string_list 54 list->max = 10; 55 list->list = malloc(list->max * sizeof(char *)); 81 list->num = list->max = 0; 93 if (list->num+1 >= list->max) { 94 newmax = list->max + 10; 98 list->max = newmax;
|
/external/e2fsprogs/lib/ext2fs/ |
ext2fsP.h | 93 __u64 max; member in struct:ext2fs_numeric_progress_struct 100 const char *label, __u64 max);
|
punch.c | 49 blk_t start, blk_t count, int max) 59 "max %d\n", level, start, count, max); 62 for (i=0, offset=0; i < max; i++, p++, offset += incr) { 111 blk64_t max = EXT2_NDIR_BLOCKS; local 122 for (level = 0; level < 4; level++, max *= (blk64_t)addr_per_block) { 125 "max %llu num %d\n", level, start, count, max, num); 127 if (start < max) { 132 if (count > max) [all...] |
/external/freetype/src/sfnt/ |
ttkern.c | 236 FT_UInt max = num_pairs; local 239 while ( min < max ) 241 FT_UInt mid = ( min + max ) >> 1; 256 max = mid;
|
/external/guava/guava/src/com/google/common/primitives/ |
UnsignedLongs.java | 107 public static long max(long... array) { method in class:UnsignedLongs 109 long max = flip(array[0]); local 112 if (next > max) { 113 max = next; 116 return flip(max);
|
/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/ |
SignedBytesTest.java | 96 SignedBytes.max(); 103 assertEquals(LEAST, SignedBytes.max(LEAST)); 104 assertEquals(GREATEST, SignedBytes.max(GREATEST)); 105 assertEquals((byte) 127, SignedBytes.max(
|
/external/guava/guava-tests/test/com/google/common/primitives/ |
SignedBytesTest.java | 99 SignedBytes.max(); 106 assertEquals(LEAST, SignedBytes.max(LEAST)); 107 assertEquals(GREATEST, SignedBytes.max(GREATEST)); 108 assertEquals((byte) 127, SignedBytes.max(
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Differ.java | 79 int max = aCount; local 80 if (max > bCount) max = bCount; 82 for (i = 0; i < max; ++i) {
|
/external/icu/icu4c/source/common/ |
ubidi_props.c | 121 int32_t max; local 127 max=bdp->indexes[UBIDI_MAX_VALUES_INDEX]; 130 return (max&UBIDI_CLASS_MASK); 132 return (max&UBIDI_MAX_JG_MASK)>>UBIDI_MAX_JG_SHIFT; 134 return (max&UBIDI_JT_MASK)>>UBIDI_JT_SHIFT; 136 return (max&UBIDI_BPT_MASK)>>UBIDI_BPT_SHIFT;
|
ucnvlat1.c | 142 UChar c, max; local 155 max=0xff; /* Latin-1 */ 157 max=0x7f; /* US-ASCII */ 222 if(oredChars>max) { 259 while(targetCapacity>0 && (c=*source++)<=max) { 265 if(c>max) {
|
uvectr32.cpp | 307 int32_t min = 0, max = count; local 308 while (min != max) { 309 int32_t probe = (min + max) / 2; 313 max = probe;
|
/external/icu/icu4c/source/i18n/ |
cpdtrans.cpp | 600 int32_t max = 0; local 603 if (len > max) { 604 max = len; 607 setMaximumContextLength(max);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Differ.java | 77 int max = aCount; local 78 if (max > bCount) max = bCount; 80 for (i = 0; i < max; ++i) {
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
CharsetMatch.java | 93 int max = maxLength < 0? Integer.MAX_VALUE : maxLength; local 96 while ((bytesRead = reader.read(buffer, 0, Math.min(max, 1024))) >= 0) { 98 max -= bytesRead;
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
OpenTypeTableWriter.java | 106 int max = Math.min(tag.length(), 4); local 108 tag.getChars(0, max, charArray, 0);
|
ScriptTagModuleWriter.java | 21 int max = data.getMaxValue(); local 23 for (int value = min; value <= max; value += 1) { 88 int max = data.getMaxValue(); local 90 for (int value = min; value <= max; value += 1) { 95 output.print((value == max? " " : ","));
|
/external/iproute2/examples/bpf/ |
bpf_agent.c | 53 int cpu, max; local 55 max = sysconf(_SC_NPROCESSORS_ONLN); 58 for (cpu = 0; cpu < max; cpu++) { 138 printf(" | max elem: %u\n", aux->ent[i].max_elem);
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/ |
FieldProbeArrayStrategy.java | 104 mv.visitMaxs(Math.max(size, 2), 0); // Maximum local stack size is 2 134 return Math.max(size, 2); // Maximum local stack size is 2
|
/external/jarjar/src/main/com/tonicsystems/jarjar/ |
Wildcard.java | 55 int max = 0; local 73 if (n > max) 74 max = n; 93 if (count < max) 94 throw new IllegalArgumentException("Result includes impossible placeholder \"@" + max + "\": " + result);
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
IO.java | 189 int max = byteCount<bufferSize?(int)byteCount:bufferSize; local 190 len=in.read(buffer,0,max);
|
/external/kernel-headers/original/uapi/linux/ |
virtio_input.h | 44 __u32 max; member in struct:virtio_input_absinfo
|
/external/libbrillo/brillo/streams/ |
stream_utils.cc | 134 if (position <= std::numeric_limits<uint64_t>::max() - offset) { 138 uint64_t max = std::numeric_limits<int64_t>::max(); local 139 if (new_position <= max) 193 std::numeric_limits<uint64_t>::max(), 4096, success_callback,
|
/external/libchrome/base/metrics/ |
histogram_samples.cc | 21 HistogramBase::Sample* max, 52 HistogramBase::Sample* max, 56 *max = max_; 138 HistogramBase::Sample max; local 143 it->Get(&min, &max, &count); 145 !pickle->WriteInt(max) ||
|
histogram_unittest.cc | 417 int max; local 418 EXPECT_TRUE(iter.ReadInt(&max)); 419 EXPECT_EQ(64, max);
|
sparse_histogram.cc | 51 // SparseHistogram never has min/max/bucket_count limit. 152 Sample max; local 154 it->Get(&min, &max, &count); 167 Sample max; local 169 it->Get(&min, &max, &count);
|