Searched refs:max (Results 251 - 275 of 1843) sorted by relevance

<<11121314151617181920>>

/external/chromium-trace/trace-viewer/src/
H A Dtimeline.js41 results.left = Math.max(r1.left, r2.left);
42 results.top = Math.max(r1.top, r2.top);
368 var worldCenter = range.min + (range.max - range.min) * 0.5;
369 var worldRange = (range.max - range.min) * 0.5;
435 var size = this.viewport_.xWorldVectorToView(range.max - range.min);
437 var worldCenter = range.min + (range.max - range.min) * 0.5;
438 var worldRange = (range.max - range.min) * 5;
445 this.viewport_.xPanWorldRangeIntoView(range.min, range.max,
468 var hiX = Math.max(xStart, xEnd);
476 hiY = Math.max(yStar
[all...]
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp60 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min) argument
62 min = max = current;
63 //Start from the second item, as max and min are initialized to the first
65 if(*max < *current)
66 max = current;
75 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min, compare comp) argument
77 min = max = current;
79 if(comp(*max, *current))
80 max = current;
130 RandomAccessIter max, mi local
245 RandomAccessIter max, min; local
293 RandomAccessIter max, min; local
419 find_extremes(RandomAccessIter current, RandomAccessIter last, div_type & max, div_type & min, right_shift shift) argument
468 find_extremes(RandomAccessIter current, RandomAccessIter last, cast_type & max, cast_type & min) argument
486 div_type max, min; local
535 div_type max, min; local
586 div_type max, min; local
635 div_type max, min; local
685 div_type max, min; local
769 div_type max, min; local
853 div_type max, min; local
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3cyclicdfa.h80 const ANTLR3_INT32 * const max; member in struct:ANTLR3_CYCLIC_DFA_struct
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-dfa.rb26 dfa.max.should == DFASubclass::MAX
/external/bluetooth/bluedroid/bta/ag/
H A Dbta_ag_at.h53 INT16 max; /* maximum value for int arg */ member in struct:__anon347
/external/chromium/chrome/browser/chromeos/login/
H A Dproxy_settings_dialog.cc22 desired_size = std::max(min_comfortable, desired_size);
/external/chromium/chrome/browser/ui/views/bubble/
H A Dborder_contents.cc135 int top = std::max(0, monitor_bounds.y() - window_bounds.y());
136 int left = std::max(0, monitor_bounds.x() - window_bounds.x());
137 int bottom = std::max(0, window_bounds.bottom() - monitor_bounds.bottom());
138 int right = std::max(0, window_bounds.right() - monitor_bounds.right());
/external/easymock/src/org/easymock/
H A DIExpectationSetters.java121 * <code>max</code> times.
125 * @param max
129 IExpectationSetters<T> times(int min, int max); argument
/external/flac/libFLAC/
H A Dogg_decoder_aspect.c41 #ifdef max
42 #undef max macro
44 #define max(x,y) ((x)>(y)?(x):(y)) macro
213 const size_t ogg_bytes_to_read = max(bytes_requested - *bytes, OGG_BYTES_CHUNK);
235 /* double protection; this will happen if the read callback returns more bytes than the max requested, which would overflow Ogg's internal buffer */
/external/guava/guava-tests/test/com/google/common/primitives/
H A DSignedBytesTest.java99 SignedBytes.max();
106 assertEquals(LEAST, SignedBytes.max(LEAST));
107 assertEquals(GREATEST, SignedBytes.max(GREATEST));
108 assertEquals((byte) 127, SignedBytes.max(
H A DUnsignedBytesTest.java100 UnsignedBytes.max();
107 assertEquals(LEAST, UnsignedBytes.max(LEAST));
108 assertEquals(GREATEST, UnsignedBytes.max(GREATEST));
109 assertEquals((byte) 255, UnsignedBytes.max(
H A DUnsignedLongsTest.java38 // max value
117 BigInteger max = BigInteger.ZERO.setBit(64).subtract(ONE);
121 String maxAsString = max.toString(radix);
122 assertEquals(max.longValue(), UnsignedLongs.parseUnsignedLong(maxAsString, radix));
126 BigInteger overflow = max.add(ONE);
/external/icu4c/layout/
H A DGXLayoutEngine.h93 * @param max - the number of characters in the input context
104 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
H A DHangulLayoutEngine.h109 * @param max - the number of characters in the input context
121 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
H A DKhmerLayoutEngine.h112 * @param max - the number of characters in the input context
124 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
H A DThaiLayoutEngine.h102 * @param max - the number of characters in the input context
115 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
H A DTibetanLayoutEngine.h112 * @param max - the number of characters in the input context
124 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
/external/icu4c/test/perf/charperf/
H A Dcharperf.h36 CharPerfFunction(CharPerfFn func, UChar32 min, UChar32 max) argument
40 MAX_ = max;
66 StdLibCharPerfFunction(StdLibCharPerfFn func, wchar_t min, wchar_t max) argument
70 MAX_ = max;
/external/iptables/extensions/
H A Dlibip6t_frag.c70 print_ids(const char *name, uint32_t min, uint32_t max, argument
75 if (min != 0 || max != 0xFFFFFFFF || invert) {
77 if (min == max)
80 printf("s:%s%u:%u", inv, min, max);
H A Dlibip6t_mh.c122 "Invalid MH type range (min > max)");
157 static void print_types(uint8_t min, uint8_t max, int invert, int numeric) argument
161 if (min != 0 || max != 0xFF || invert) {
163 if (min == max) {
170 print_type(max, numeric);
H A Dlibxt_udp.c86 print_ports(const char *name, uint16_t min, uint16_t max, argument
91 if (min != 0 || max != 0xFFFF || invert) {
93 if (min == max) {
100 print_port(max, numeric);
/external/kernel-headers/original/linux/netfilter/
H A Dnfnetlink.h151 #define nfattr_parse_nested(tb, max, nfa) \
152 nfattr_parse((tb), (max), NFA_DATA((nfa)), NFA_PAYLOAD((nfa)))
154 #define nfattr_bad_size(tb, max, cta_min) \
156 for (__i=0; __i<max; __i++) { \
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dip_nat.h39 union ip_conntrack_manip_proto min, max; member in struct:ip_nat_range
/external/libpcap/
H A Dpcap-dos.h79 #define max(a,b) _max(a,b) macro
86 #ifndef max
87 #define max(a,b) ((a) < (b) ? (b) : (a)) macro
164 int (*copy_rx_buf) (BYTE *buf, int max); /* rx-copy (pktdrvr only) */
/external/openssl/crypto/buffer/
H A Dbuffer.h81 size_t max; /* size of buffer */ member in struct:buf_mem_st

Completed in 531 milliseconds

<<11121314151617181920>>