Searched defs:large (Results 1 - 25 of 29) sorted by relevance

12

/external/python/cpython3/Include/
H A Daccu.h22 PyObject *large; /* A list of previously accumulated large strings */ member in struct:__anon19779
/external/libbrillo/brillo/
H A Dany_internal_impl_unittest.cc87 } large = {}; local
88 buffer.Assign(large);
/external/protobuf/src/google/protobuf/util/
H A Dtime_util_test.cc290 Duration large = TimeUtil::SecondsToDuration(315576000000LL) - one_nano; local
292 EXPECT_EQ("0.999999999s", TimeUtil::ToString(large / 315576000000LL));
293 EXPECT_EQ("-0.999999999s", TimeUtil::ToString((-large) / 315576000000LL));
294 EXPECT_EQ("-0.999999999s", TimeUtil::ToString(large / (-315576000000LL)));
295 Duration large2 = large + one_nano;
296 EXPECT_EQ(large, large % large2);
297 EXPECT_EQ(-large, (-large) % large2);
298 EXPECT_EQ(large, larg
[all...]
/external/skia/src/core/
H A DSkRectPriv.h16 // Returns an irect that is very large, and can be safely round-trip with SkRect and still
21 const int32_t large = 1 << 29; local
22 return { -large, -large, large, large };
51 // Will return false for very large values that might have fit
/external/skqp/src/core/
H A DSkRectPriv.h16 // Returns an irect that is very large, and can be safely round-trip with SkRect and still
21 const int32_t large = 1 << 29; local
22 return { -large, -large, large, large };
50 // conservative check. will return false for very large values that "could" fit
/external/clang/test/SemaCXX/
H A Dbuiltin-object-size-cxx14.cpp67 LargeStruct large; local
68 copy5CharsIntoStrict(large.buf);
75 LargeStruct large = {0, {}, 0}; local
76 copy5CharsIntoStrict(large.buf);
86 LargeStruct large; local
88 large.buf[I] = I;
89 copy5CharsIntoStrict(large.buf);
/external/clang/test/CodeGen/
H A Dsparcv9-abi.c50 struct large { struct
56 // CHECK-LABEL: define void @f_large(%struct.large* noalias sret %agg.result, %struct.large* %x)
57 struct large f_large(struct large x) {
H A Dasm.c92 struct large { struct
96 unsigned long t15(int x, struct large *P) {
/external/icu/icu4c/source/test/cintltst/
H A Dsorttest.c34 uint32_t large[]={ 21, 10, 20, 19, 11, 12, 13, 10, 10, 10, 10, local
72 /* sort large array (not stable) */
74 uprv_sortArray(large, UPRV_LENGTHOF(large), sizeof(large[0]), uprv_uint32Comparator, NULL, FALSE, &errorCode);
76 log_err("uprv_sortArray(large) failed - %s\n", u_errorName(errorCode));
79 for(i=1; i<UPRV_LENGTHOF(large); ++i) {
80 if(large[i-1]>large[i]) {
81 log_err("uprv_sortArray(large) mi
[all...]
/external/jemalloc/test/unit/
H A Ddecay.c112 * Test the *allocx() APIs using huge, large, and small size classes,
168 * Test tcache fill/flush interactions for large and small size classes,
215 size_t sz, large; local
222 * Allocate a bunch of large objects, pause the clock, deallocate the
233 large = nallocx(tcache_max + 1, flags);
236 assert_d_eq(mallctl("arenas.lrun.0.size", (void *)&large, &sz,
249 ps[i] = mallocx(large, flags);
H A Dstats.c66 "nmalloc should be at least as large as ndalloc");
78 void *little, *large, *huge; local
91 large = mallocx(large_maxclass, 0);
92 assert_ptr_not_null(large, "Unexpected mallocx() failure");
97 dallocx(large, 0);
184 "nmalloc should be at least as large as ndalloc");
212 assert_d_eq(mallctl("stats.arenas.0.large.allocated",
216 assert_d_eq(mallctl("stats.arenas.0.large.nmalloc", (void *)&nmalloc,
218 assert_d_eq(mallctl("stats.arenas.0.large.ndalloc", (void *)&ndalloc,
220 assert_d_eq(mallctl("stats.arenas.0.large
[all...]
/external/zlib/src/examples/
H A Denough.c89 to exceed the capacity of an eight-byte integer with a large number of
90 symbols and a large maximum code length, so multiple-precision arithmetic
172 local int large; /* largest code table so far */ variable
320 the current sub-table is rem. Uses the globals max, code, root, large, and
342 if (mem > large) {
343 large = mem;
414 large = 1 << root; /* base table */
433 printf("done: maximum of %d table entries\n", large);
/external/libcxx/test/support/
H A Dany_helpers.h254 typedef large_type<> large; typedef
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
H A DDeviceConfig.java30 large(480, 640, Configuration.SCREENLAYOUT_SIZE_LARGE), enum constant in enum:DeviceConfig.ScreenSize
70 return large;
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dscalar_computations_test.cc838 const uint32 large = std::numeric_limits<int32>::max(); local
839 TestMinMax<uint32>(large, 3, 3, &ComputationBuilder::Min);
847 const uint32 large = std::numeric_limits<int32>::max(); local
848 TestMinMax<uint32>(large, 3, large, &ComputationBuilder::Max);
/external/jemalloc/src/
H A Dstats.c39 bool json, bool large, bool huge, unsigned i)
177 "\t\t\t\t]%s\n", (large || huge) ? "," : "");
200 "large: size ind allocated nmalloc"
318 bool json, unsigned i, bool bins, bool large, bool huge)
440 CTL_M2_GET("stats.arenas.0.large.allocated", i, &large_allocated,
442 CTL_M2_GET("stats.arenas.0.large.nmalloc", i, &large_nmalloc, uint64_t);
443 CTL_M2_GET("stats.arenas.0.large.ndalloc", i, &large_ndalloc, uint64_t);
444 CTL_M2_GET("stats.arenas.0.large.nrequests", i, &large_nrequests,
448 "\t\t\t\t\"large\": {\n");
463 "large
38 stats_arena_bins_print(void (*write_cb)(void *, const char *), void *cbopaque, bool json, bool large, bool huge, unsigned i) argument
317 stats_arena_print(void (*write_cb)(void *, const char *), void *cbopaque, bool json, unsigned i, bool bins, bool large, bool huge) argument
946 stats_print_helper(void (*write_cb)(void *, const char *), void *cbopaque, bool json, bool merged, bool unmerged, bool bins, bool large, bool huge) argument
1075 bool large = true; local
[all...]
/external/libogg/src/
H A Dbitwise.c600 static unsigned long large[]= local
666 oggpack_write(&o,large[i],32);
672 if(oggpack_look(&r,32)!=large[i]){
673 fprintf(stderr,"%ld != %ld (%lx!=%lx):",oggpack_look(&r,32),large[i],
674 oggpack_look(&r,32),large[i]);
752 oggpackB_write(&o,large[i],32);
758 if(oggpackB_look(&r,32)!=large[i]){
759 fprintf(stderr,"%ld != %ld (%lx!=%lx):",oggpackB_look(&r,32),large[i],
760 oggpackB_look(&r,32),large[i]);
/external/python/cpython3/Python/
H A Dpytime.c201 "timestamp too large to convert to C _PyTime_t");
529 ULARGE_INTEGER large; local
534 large.u.LowPart = system_time.dwLowDateTime;
535 large.u.HighPart = system_time.dwHighDateTime;
539 *tp = large.QuadPart * 100 - 11644473600000000000;
/external/tensorflow/tensorflow/core/common_runtime/
H A Dshape_refiner_test.cc264 auto large = ops::Const( local
269 large.node()})
285 TF_ASSERT_OK(m.AddNode(large.node()));
/external/tremolo/Tremolo/
H A Dbitwise.c553 static unsigned long large[]= local
605 or->buffer->data[i*4] = large[i]&0xff;
606 or->buffer->data[i*4+1] = (large[i]>>8)&0xff;
607 or->buffer->data[i*4+2] = (large[i]>>16)&0xff;
608 or->buffer->data[i*4+3] = (large[i]>>24)&0xff;
615 if(test!=large[i]){
616 fprintf(stderr,"%ld != %ld (%lx!=%lx):",test,large[i],
617 test,large[i]);
/external/adhd/cras/src/dsp/
H A Ddrc_kernel.c1006 int large = max(read_index, write_index); local
1010 int chunk = min(large - small, MAX_PRE_DELAY_FRAMES - large);
/external/python/cpython3/Modules/
H A Dtimemodule.c945 ULARGE_INTEGER large; local
954 large.u.LowPart = kernel_time.dwLowDateTime;
955 large.u.HighPart = kernel_time.dwHighDateTime;
956 total = (double)large.QuadPart;
957 large.u.LowPart = user_time.dwLowDateTime;
958 large.u.HighPart = user_time.dwHighDateTime;
959 total += (double)large.QuadPart;
1452 "sleep length is too large");
/external/skia/tools/debugger/
H A DSkDebugCanvas.cpp90 // inset has to be surprisingly large).
93 SkRect large = SkRect::Make(largeIRect); local
95 SkASSERT(!large.roundOut().isEmpty());
98 this->INHERITED::onClipRect(large, kReplace_SkClipOp, kHard_ClipEdgeStyle);
/external/skqp/tools/debugger/
H A DSkDebugCanvas.cpp90 // inset has to be surprisingly large).
93 SkRect large = SkRect::Make(largeIRect); local
95 SkASSERT(!large.roundOut().isEmpty());
98 this->INHERITED::onClipRect(large, kReplace_SkClipOp, kHard_ClipEdgeStyle);
/external/deqp/modules/gles2/functional/
H A Des2fClippingTests.cpp1500 const float large = 100000.0f; local
1538 {tcu::Vec4(-0.2f, -0.3f, 0.0f, 1.0f), white, tcu::Vec4( 0.2f, -0.3f, 0.0f, 1.0f), white, tcu::Vec4( 0.0f, -large, 2.0f, 1.0f), white},
1541 {tcu::Vec4( 0.5f, 0.5f, 0.0f, 1.0f), white, tcu::Vec4( large, 0.5f, 0.0f, 1.0f), white, tcu::Vec4( 0.5f, large, 0.0f, 1.0f), white},
1544 {tcu::Vec4(-0.9f, -large, 0.0f, 1.0f), white, tcu::Vec4(-1.1f, -large, 0.0f, 1.0f), white, tcu::Vec4(-0.9f, large, 0.0f, 1.0f), white},
1549 {tcu::Vec4(-0.2f, -0.3f, 0.0f, 1.0f), white, tcu::Vec4( 0.2f, -0.3f, 0.0f, 1.0f), white, tcu::Vec4( 0.0f, -large, large, 1.0f), white},
1552 {tcu::Vec4( 0.5f, 0.5f, 0.0f, 1.0f), white, tcu::Vec4( 0.9f, large/
[all...]

Completed in 5068 milliseconds

12