Searched refs:too_big (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_resource.py | 86 too_big = 10**50 93 resource.setrlimit(resource.RLIMIT_FSIZE, (too_big, max)) 97 resource.setrlimit(resource.RLIMIT_FSIZE, (max, too_big))
|
/third_party/skia/src/core/ |
H A D | SkBitmapProcState.cpp | 527 const SkScalar too_big = SkIntToScalar(1 << 30); in setupForTranslate() local 528 if (SkScalarAbs(pt.fX) > too_big || SkScalarAbs(pt.fY) > too_big) { in setupForTranslate()
|
/third_party/skia/include/private/ |
H A D | SkNx_neon.h | 21 auto too_big = vcgtq_f32(roundtrip, v); in emulate_vrndmq_f32() local 22 return vsubq_f32(roundtrip, (float32x4_t)vandq_u32(too_big, (uint32x4_t)vdupq_n_f32(1))); in emulate_vrndmq_f32() 26 auto too_big = vcgt_f32(roundtrip, v); in emulate_vrndm_f32() local 27 return vsub_f32(roundtrip, (float32x2_t)vand_u32(too_big, (uint32x2_t)vdup_n_f32(1))); in emulate_vrndm_f32()
|
H A D | SkNx_sse.h | 33 __m128 too_big = _mm_cmpgt_ps(roundtrip, v); in emulate_mm_floor_ps() local 34 return _mm_sub_ps(roundtrip, _mm_and_ps(too_big, _mm_set1_ps(1.0f))); in emulate_mm_floor_ps()
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | [all...] |
Completed in 132 milliseconds