HomeSort by relevance Sort by last modified time
    Searched refs:second_half (Results 1 - 4 of 4) sorted by null

  /external/v8/src/base/utils/
random-number-generator.cc 46 unsigned first_half, second_half; local
49 result = rand_s(&second_half);
51 SetSeed((static_cast<int64_t>(first_half) << 32) + second_half);
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 69 struct bezier *second_half)
73 second_half->x3 = (bez->x3 + bez->x4) * 0.5;
75 second_half->x4 = bez->x4;
77 second_half->x2 = (second_half->x3 + c) * 0.5;
78 first_half->x4 = second_half->x1 =
79 (first_half->x3 + second_half->x2) * 0.5;
83 second_half->y3 = (bez->y3 + bez->y4) * 0.5;
85 second_half->y4 = bez->y4;
87 second_half->y2 = (second_half->y3 + c) * 0.5
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 506 Coon_BezierCoeff second_half() { function in struct:Coon_BezierCoeff
560 Coon_Bezier second_half() { function in struct:Coon_Bezier
562 result.x = x.second_half();
563 result.y = y.second_half();
696 Draw(x_scale, y_scale, left, bottom + 1, m1, C2, D1.second_half(),
697 D2.second_half());
706 Draw(x_scale, y_scale, left + 1, bottom, C1.second_half(),
707 C2.second_half(), m2, D2);
713 Coon_Bezier m1s = m1.second_half();
715 Coon_Bezier m2s = m2.second_half();
    [all...]
  /art/compiler/utils/
intrusive_forward_list.h 348 IntrusiveForwardList second_half; local
349 second_half.splice_after(second_half.before_begin(), *this, middle, end());
351 second_half.sort(cmp);
352 merge(second_half, cmp);

Completed in 295 milliseconds