Searched refs:second_half (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/v8/src/base/utils/ |
D | random-number-generator.cc | 46 unsigned first_half, second_half; in RandomNumberGenerator() local 49 result = rand_s(&second_half); in RandomNumberGenerator() 51 SetSeed((static_cast<int64_t>(first_half) << 32) + second_half); in RandomNumberGenerator()
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | bezier.c | 69 struct bezier *second_half) in split() argument 73 second_half->x3 = (bez->x3 + bez->x4) * 0.5; in split() 75 second_half->x4 = bez->x4; in split() 77 second_half->x2 = (second_half->x3 + c) * 0.5; in split() 78 first_half->x4 = second_half->x1 = in split() 79 (first_half->x3 + second_half->x2) * 0.5; in split() 83 second_half->y3 = (bez->y3 + bez->y4) * 0.5; in split() 85 second_half->y4 = bez->y4; in split() 87 second_half->y2 = (second_half->y3 + c) * 0.5; in split() 88 first_half->y4 = second_half->y1 = in split() [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
D | bezier.c | 69 struct bezier *second_half) in split() argument 73 second_half->x3 = (bez->x3 + bez->x4) * 0.5; in split() 75 second_half->x4 = bez->x4; in split() 77 second_half->x2 = (second_half->x3 + c) * 0.5; in split() 78 first_half->x4 = second_half->x1 = in split() 79 (first_half->x3 + second_half->x2) * 0.5; in split() 83 second_half->y3 = (bez->y3 + bez->y4) * 0.5; in split() 85 second_half->y4 = bez->y4; in split() 87 second_half->y2 = (second_half->y3 + c) * 0.5; in split() 88 first_half->y4 = second_half->y1 = in split() [all …]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
D | bisect_test_ordering.py | 123 second_half = Bucket(bucket_to_split.tests[halfway_point:]) 129 new_buckets = buckets_before + [second_half] + buckets_after 139 self.buckets = buckets_before + [first_half, second_half] + buckets_after
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_pattern.cpp | 470 Coon_BezierCoeff second_half() in second_half() function 520 Coon_Bezier second_half() in second_half() function 523 result.x = x.second_half(); in second_half() 524 result.y = y.second_half(); in second_half() 638 … Draw(x_scale, y_scale, left, bottom + 1, m1, C2, D1.second_half(), D2.second_half()); in Draw() 645 … Draw(x_scale, y_scale, left + 1, bottom, C1.second_half(), C2.second_half(), m2, D2); in Draw() 651 Coon_Bezier m1s = m1.second_half(); in Draw() 653 Coon_Bezier m2s = m2.second_half(); in Draw() 659 … Draw(x_scale, y_scale, left, bottom + 1, m1f, C2.first_half(), D1.second_half(), m2s); in Draw() 660 … Draw(x_scale, y_scale, left + 1, bottom, C1.second_half(), m1s, m2f, D2.first_half()); in Draw() [all …]
|