/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | ExtensionSchemaFull.java | 117 List<Long> list = new ArrayList<Long>(); in parseExtension() 124 List<Long> list = new ArrayList<Long>(); in parseExtension() 138 List<Long> list = new ArrayList<Long>(); in parseExtension() 173 List<Long> list = new ArrayList<Long>(); in parseExtension() 187 List<Long> list = new ArrayList<Long>(); in parseExtension() [all...] |
H A D | ExtensionSchemaLite.java | 100 List<Long> list = new ArrayList<Long>(); in parseExtension() 107 List<Long> list = new ArrayList<Long>(); in parseExtension() 121 List<Long> list = new ArrayList<Long>(); in parseExtension() 156 List<Long> list = new ArrayList<Long>(); in parseExtension() 170 List<Long> list = new ArrayList<Long>(); in parseExtension() [all...] |
H A D | LongArrayList.java | 45 final class LongArrayList extends AbstractProtobufList<Long> 132 public Long get(int index) { in get() 144 if (!(element instanceof Long)) { in indexOf() 147 long unboxedElement = (Long) element; in indexOf() 168 public Long set(int index, Long element) { in set() 182 public boolean add(Long element) { in add() 188 public void add(int index, Long element) { in add() 192 /** Like {@link #add(Long)} but more efficient in that it doesn't box the element. */ 208 /** Like {@link #add(int, Long)} bu [all...] |
H A D | Reader.java | 225 void readUInt64List(List<Long> target) throws IOException; in readUInt64List() 233 void readInt64List(List<Long> target) throws IOException; in readInt64List() 249 void readFixed64List(List<Long> target) throws IOException; in readFixed64List() 349 void readSFixed64List(List<Long> target) throws IOException; in readSFixed64List() 365 void readSInt64List(List<Long> target) throws IOException; in readSInt64List()
|
H A D | Writer.java | 146 void writeInt64List(int fieldNumber, List<Long> value, boolean packed) throws IOException; in writeInt64List() 149 void writeUInt64List(int fieldNumber, List<Long> value, boolean packed) throws IOException; in writeUInt64List() 152 void writeFixed64List(int fieldNumber, List<Long> value, boolean packed) throws IOException; in writeFixed64List() 179 void writeSFixed64List(int fieldNumber, List<Long> value, boolean packed) throws IOException; in writeSFixed64List() 185 void writeSInt64List(int fieldNumber, List<Long> value, boolean packed) throws IOException; in writeSInt64List()
|
/third_party/skia/third_party/externals/freetype/src/raster/ |
H A D | ftraster.c | 302 typedef long Long, *PLong; typedef 311 Long l; 320 Long x; 321 Long y; 355 Long height; /* profile's height in scanlines */ 356 Long start; /* profile's starting scanline */ 370 ( ( sizeof ( TProfile ) + sizeof ( Alignment ) - 1 ) / sizeof ( Long ) ) 432 #define TRUNC( x ) ( (Long)(x) >> ras.precision_bits ) 449 #define FT_MAX_BLACK_POOL ( FT_RENDER_POOL_SIZE / sizeof ( Long ) ) 451 #define FT_MAX_BLACK_POOL ( 2048 / sizeof ( Long ) ) [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
H A D | LongHashtable.java | 29 table.remove(new Long(key)); in put() 31 table.put(new Long(key), new Integer(value)); in put() 36 Integer value = table.get(new Long(key)); in get() 42 private Map<Long, Integer> table = new HashMap<Long, Integer>();
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
H A D | LongHashtable.java | 26 table.remove(new Long(key)); in put() 28 table.put(new Long(key), new Integer(value)); in put() 33 Integer value = table.get(new Long(key)); in get() 39 private Map<Long, Integer> table = new HashMap<Long, Integer>();
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | BigNumberFormatTest.java | 38 Number n = new Long(1234); in TestExponent() 53 expect(f, new Long(123456789), "12,34,56,789"); in TestSecondaryGrouping() 57 expect(f, new Long(123456789), "12,3456,789"); in TestSecondaryGrouping() 65 expect(f, new Long(1876543210), str); in TestSecondaryGrouping() 204 new Long(12345), in TestScientific() 228 new Long(0), in TestScientific() 237 new Long(45678000), in TestScientific() 259 new Long(12000), "1.2E+04", in TestScientific() 269 new Object[] { new Long(0), "^^^^0", in TestPad() 274 new Object[] { new Long( in TestPad() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | BigNumberFormatTest.java | 41 Number n = new Long(1234); in TestExponent() 56 expect(f, new Long(123456789), "12,34,56,789"); in TestSecondaryGrouping() 60 expect(f, new Long(123456789), "12,3456,789"); in TestSecondaryGrouping() 68 expect(f, new Long(1876543210), str); in TestSecondaryGrouping() 207 new Long(12345), in TestScientific() 231 new Long(0), in TestScientific() 240 new Long(45678000), in TestScientific() 262 new Long(12000), "1.2E+04", in TestScientific() 272 new Object[] { new Long(0), "^^^^0", in TestPad() 277 new Object[] { new Long( in TestPad() [all...] |
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | Proto2ExtensionLookupSchemaTest.java | 132 List<Long> singularEnum = in testUnknownEnum() 138 assertEquals((Long) (long) outOfRange, singularEnum.get(0)); in testUnknownEnum() 141 List<Long> repeatedEnum = in testUnknownEnum() 147 assertEquals((Long) (long) outOfRange, repeatedEnum.get(0)); in testUnknownEnum() 150 List<Long> packedRepeatedEnum = in testUnknownEnum() 156 assertEquals((Long) (long) outOfRange, packedRepeatedEnum.get(0)); in testUnknownEnum()
|
H A D | AbstractProto2SchemaTest.java | 182 List<Long> singularEnum = in unknownEnum() 188 assertEquals((Long) (long) outOfRange, singularEnum.get(0)); in unknownEnum() 191 List<Long> repeatedEnum = in unknownEnum() 197 assertEquals((Long) (long) outOfRange, repeatedEnum.get(0)); in unknownEnum() 200 List<Long> packedRepeatedEnum = in unknownEnum() 206 assertEquals((Long) (long) outOfRange, packedRepeatedEnum.get(0)); in unknownEnum()
|
H A D | LongArrayListTest.java | 77 Iterator<Long> iterator = list.iterator(); in testModificationWithIteration() 286 list.add(Long.valueOf(5 + i)); in testAdd() 327 assertFalse(list.addAll(Collections.<Long>emptyList())); in testAddAll() 343 assertTrue(list.remove(Long.valueOf(3))); in testRemove() 346 assertFalse(list.remove(Long.valueOf(3))); in testRemove() 409 list.addAll(Collections.<Long>emptyList()); in assertImmutable() 451 list.addAll(0, Collections.<Long>emptyList()); in assertImmutable() 486 list.removeAll(Collections.<Long>emptyList()); in assertImmutable() 507 list.retainAll(Collections.<Long>emptyList()); in assertImmutable()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | CurrencyMetaInfo.java | 124 null, null, Long.MIN_VALUE, Long.MAX_VALUE, false); 268 long fromLong = from == null ? Long.MIN_VALUE : from.getTime(); in withDateRange() 269 long toLong = to == null ? Long.MAX_VALUE : to.getTime(); in withDateRange() 429 * If there is no date, this is Long.MIN_VALUE; 437 * If there is no date, this is Long.MAX_VALUE. 582 if (date == Long.MAX_VALUE || date == Long.MIN_VALUE) { in dateString() 597 } else if (v instanceof Long) { in debugString() 598 s = dateString(((Long) in debugString() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | CurrencyMetaInfo.java | 119 null, null, Long.MIN_VALUE, Long.MAX_VALUE, false); 250 long fromLong = from == null ? Long.MIN_VALUE : from.getTime(); in withDateRange() 251 long toLong = to == null ? Long.MAX_VALUE : to.getTime(); in withDateRange() 398 * If there is no date, this is Long.MIN_VALUE; 405 * If there is no date, this is Long.MAX_VALUE. 540 if (date == Long.MAX_VALUE || date == Long.MIN_VALUE) { in dateString() 555 } else if (v instanceof Long) { in debugString() 556 s = dateString(((Long) in debugString() [all...] |
/third_party/backends/backend/ |
H A D | plustek-pp_misc.c | 35 * - 0.44 - fix format string issues, as Long types default to int32_t 111 static Long miscNextLongRand( Long seed ) in miscNextLongRand() 115 lo = _PP_A * (Long)(seed & 0xFFFF); in miscNextLongRand() 116 hi = _PP_A * (Long)((ULong)seed >> 16); in miscNextLongRand() 129 return (Long)lo; in miscNextLongRand() 365 _LOC Long MiscLongRand( void ) in MiscLongRand()
|
/third_party/protobuf/js/experimental/runtime/ |
H A D | int64_test.js | 8 const Long = goog.require('goog.math.Long'); 26 expect(int64.asLong()).toEqual(Long.getMaxValue()); 32 expect(int64.asLong()).toEqual(Long.getMinValue()); 37 expect(int64.asLong()).toEqual(Long.fromInt(1)); 44 expect(int64.asLong()).toEqual(Long.fromInt(-1)); 76 const int64 = Int64.fromLong(Long.fromInt(1));
|
/third_party/FreeBSD/contrib/gdtoa/ |
H A D | gdtoaimp.h | 88 * #define Long int on machines with 32-bit ints and 64-bit longs. 109 * #define Just_16 to store 16 bits per 32-bit Long when doing 183 #define Long int macro 447 /* When Pack_32 is not defined, we store 16 bits per 32-bit Long. 450 * slower. Hence the default is now to store 32 bits per Long. 596 extern void ULtof ANSI((ULong*, ULong*, Long, int)); 597 extern void ULtod ANSI((ULong*, ULong*, Long, int)); 598 extern void ULtodd ANSI((ULong*, ULong*, Long, int)); 599 extern void ULtoQ ANSI((ULong*, ULong*, Long, int)); 600 extern void ULtox ANSI((UShort*, ULong*, Long, in [all...] |
H A D | gdtoa.h | 38 #ifndef Long 39 #define Long int macro 42 typedef unsigned Long ULong; 113 extern int strtodg ANSI((CONST char*, char**, FPI*, Long*, ULong*));
|
H A D | strtord.c | 36 ULtod(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k; in ULtod() 38 ULtod(ULong *L, ULong *bits, Long exp, int k) 82 Long exp;
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timescale/ |
H A D | GenerateCTimeScaleData.java | 52 if (value == Long.MIN_VALUE) { in minMaxFilter() 54 } else if (value == Long.MAX_VALUE) { in minMaxFilter() 58 return "INT64_C(" + Long.toString(value) + ")"; in minMaxFilter() 93 cargs[0] = "INT64_C(" + Long.toString(units) + ")"; in main()
|
/third_party/rust/crates/clap/src/ |
H A D | mkeymap.rs | 27 Long(OsStr), 49 KeyType::Long(l) => l == rhs, in eq() 58 KeyType::Long(l) => l == rhs, in eq() 67 KeyType::Long(l) => l == rhs, in eq() 166 let key = KeyType::Long(long.into()); in append_keys() 175 let key = KeyType::Long(long.into()); in append_keys()
|
/third_party/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/ |
H A D | ICUCurrencyMetaInfo.java | 86 if (filter.from != Long.MIN_VALUE || filter.to != Long.MAX_VALUE) { in collect() 127 long from = Long.MIN_VALUE; in collectRegion() 128 long to = Long.MAX_VALUE; in collectRegion() 140 from = getDate(r.at("from"), Long.MIN_VALUE, false); in collectRegion() 141 to = getDate(r.at("to"), Long.MAX_VALUE, true); in collectRegion()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | ICUCurrencyMetaInfo.java | 88 if (filter.from != Long.MIN_VALUE || filter.to != Long.MAX_VALUE) { in collect() 129 long from = Long.MIN_VALUE; in collectRegion() 130 long to = Long.MAX_VALUE; in collectRegion() 142 from = getDate(r.at("from"), Long.MIN_VALUE, false); in collectRegion() 143 to = getDate(r.at("to"), Long.MAX_VALUE, true); in collectRegion()
|
/third_party/icu/icu4c/source/test/perf/leperf/ |
H A D | letrperf.cpp | 31 struct Long { struct 36 Long items[ITEM_COUNT]; 116 LEReferenceToArrayOf<Long> longs(comp, success, (size_t)0, ITEM_COUNT); in time_letr3() 123 const Long &item = longs.getObject(i, success); in time_letr3()
|