/third_party/skia/tools/ |
H A D | compare_codereview.py | 133 # the bot name. 134 bot = self._anchor_data.strip() 137 if bot: 139 self.statuses[bot] = stat 140 # Reset state to search for the next bot. 340 for bot in sorted(all_bots): 341 if (roll[bot].status == 'success'): 343 printer(0, '==%s==' % bot) 347 if control[bot].status != 'failure' and roll[bot] [all...] |
/third_party/skia/src/core/ |
H A D | SkEdge.cpp | 65 int bot = SkFDot6Round(y1); in setLine() local 68 if (top == bot) { in setLine() 72 if (clip && (top >= clip->fBottom || bot <= clip->fTop)) { in setLine() 82 fLastY = bot - 1; in setLine() 106 int bot = SkFDot6Round(y1); in updateLine() local 111 if (top == bot) in updateLine() 123 fLastY = bot - 1; in updateLine() 214 int bot = SkFDot6Round(y2); in setQuadraticWithoutUpdate() local 217 if (top == bot) in setQuadraticWithoutUpdate() 389 int bot in setCubicWithoutUpdate() local [all...] |
H A D | SkRegion_path.cpp | 282 SkScalar bot = SkIntToScalar(SK_MinS16); in count_path_runtype_values() local 292 } else if (bot < pts[i].fY) { in count_path_runtype_values() 293 bot = pts[i].fY; in count_path_runtype_values() 299 } else if (bot < pts[0].fY) { in count_path_runtype_values() 300 bot = pts[0].fY; in count_path_runtype_values() 308 SkASSERT(top <= bot); in count_path_runtype_values() 310 *ibot = SkScalarRoundToInt(bot); in count_path_runtype_values() 353 int bot = std::min(pathBot, clipBot); in setPath() local 354 if (top >= bot) { in setPath() 360 if (!builder.init(bot in setPath() [all...] |
H A D | SkRegionPriv.h | 197 int bot; 204 bot = *runs++; 205 SkASSERT(bot < SkRegion_kRunTypeSentinel); 251 bounds->fBottom = bot;
|
H A D | SkEdge.h | 118 int bot = SkFDot6Round(y1); 121 if (top == bot) { 131 fLastY = bot - 1;
|
H A D | SkRegion.cpp | 292 assert_sentinel(runs[1], false); // bot: a sentinal would mean two in a row in setRuns() 932 int top, bot SK_INIT_TO_AVOID_WARNING; in operate() 942 bot = a_bot; in operate() 945 bot = a_top = b_top; in operate() 951 bot = b_bot; in operate() 954 bot = b_top = a_top; in operate() 961 bot = b_top = a_bot; in operate() 965 bot = a_top = b_bot; in operate() 973 oper.addSpan(bot, run0, run1); in operate() 998 prevBot = bot; in operate() 1583 int32_t bot = *p++; VisitSpans() local [all...] |
H A D | SkAAClip.cpp | 608 auto advanceIter = [](Iter& iter, int& iterTop, int& iterBot, int bot) { in operateY() 609 if (bot == iterBot) { in operateY() 626 int top, bot; in operateY() local 632 bot = botA; in operateY() 634 bot = topA = topB; in operateY() 641 bot = botB; in operateY() 643 bot = topB = topA; in operateY() 647 bot = topA = topB = std::min(botA, botB); in operateY() 656 if (bot > fBounds.fBottom) { in operateY() 657 bot in operateY() [all...] |
H A D | SkScan_Antihair.cpp | 674 int bot = B >> 8; 675 int height = bot - top; 697 do_scanline(L, bot, R, B & 0xFF, blitter); 901 int bot = B >> 8; 902 int height = bot - top; 913 inner_scanline(L, bot, R, ~B & 0xFF, blitter);
|
/third_party/skia/experimental/sorttoy/ |
H A D | Fake.cpp | 65 SkColor4f bot = SkColor4f::FromColor(c1); in blend() local 68 t * bot.fR + (1.0f - t) * top.fR, in blend() 69 t * bot.fG + (1.0f - t) * top.fG, in blend() 70 t * bot.fB + (1.0f - t) * top.fB, in blend() 71 t * bot.fA + (1.0f - t) * top.fA in blend()
|
H A D | Cmds.cpp | 167 SkColor4f bot = SkColor4f::FromColor(*dstBM->getAddr32(x, y)); in rasterize() local 170 top.fA * top.fR + (1.0f - top.fA) * bot.fR, in rasterize() 171 top.fA * top.fG + (1.0f - top.fA) * bot.fG, in rasterize() 172 top.fA * top.fB + (1.0f - top.fA) * bot.fB, in rasterize() 173 top.fA + (1.0f - top.fA) * bot.fA in rasterize()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_script_run.c | 310 int bot = 1; in script_run() local 314 if (top <= bot + 1) /* <= rather than == is paranoia */ in script_run() 319 mid = (top + bot) / 2; in script_run() 320 if (c <= PRIV(ucd_digit_sets)[mid]) top = mid; else bot = mid; in script_run()
|
H A D | pcre2_substring.c | 483 uint16_t bot = 0; in pcre2_substring_nametable_scan() local 488 while (top > bot) in pcre2_substring_nametable_scan() 490 uint16_t mid = (top + bot) / 2; in pcre2_substring_nametable_scan() 516 if (c > 0) bot = mid + 1; else top = mid; in pcre2_substring_nametable_scan()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | flow.c | 846 static void remove_merging_phisrc(struct instruction *insn, struct basic_block *bot) in remove_merging_phisrc() argument 862 if (phisrc->bb == bot) { in remove_merging_phisrc() 892 // @bot: the second BB to be merged 893 static int merge_bb(struct basic_block *top, struct basic_block *bot) in merge_bb() argument 898 if (top == bot) in merge_bb() 901 top->children = bot->children; in merge_bb() 902 bot->children = NULL; in merge_bb() 903 bot->parents = NULL; in merge_bb() 906 replace_bb_in_list(&bb->parents, bot, top, 1); in merge_bb() 914 remove_merging_phisrc(insn, bot); in merge_bb() [all...] |
/third_party/skia/bench/ |
H A D | check_bench_regressions.py | 139 key_suffix: string of <Platform>-<Alg> containing the bot platform and the 148 # The platform for this bot, to pass to the dashboard plot. 212 bot = None 219 bot = value 233 if directory is None or bot is None or rev is None: 237 platform_and_alg = bot + '-' + rep
|
/third_party/backends/include/sane/ |
H A D | sanei_magic.h | 129 * @param[out] bot vertical offset to lower edge of media 140 int dpiX, int dpiY, int * top, int * bot, int * left, int * right); 147 * @param bot vertical offset to lower edge of crop 158 int top, int bot, int left, int right);
|
/third_party/node/deps/v8/tools/ |
H A D | try_perf.py | 104 cmd += ['-b %s' % bot for bot in options.bots]
|
/third_party/skia/tests/graphite/ |
H A D | IntersectionTreeTest.cpp | 45 rect.bot()})); in DEF_GRAPHITE_TEST() 59 rect.bot()})); in DEF_GRAPHITE_TEST()
|
/third_party/backends/sanei/ |
H A D | sanei_magic.c | 67 static SANE_Status getLeftEdge (int width, int height, int * top, int * bot, 275 int dpiX, int dpiY, int * top, int * bot, int * left, int * right) in sanei_magic_findEdges() 341 *bot = -1; in sanei_magic_findEdges() 344 if(*bot < i){ in sanei_magic_findEdges() 345 *bot = i; in sanei_magic_findEdges() 355 *bot = -1; in sanei_magic_findEdges() 359 /* could not find top/bot edges */ in sanei_magic_findEdges() 360 if(*top > *bot){ in sanei_magic_findEdges() 371 botBuf[0], topBuf[0], *bot, *top); in sanei_magic_findEdges() 375 if(botBuf[i] > topBuf[i] && (botBuf[i]-10 < *bot || topBu in sanei_magic_findEdges() 274 sanei_magic_findEdges(SANE_Parameters * params, SANE_Byte * buffer, int dpiX, int dpiY, int * top, int * bot, int * left, int * right) sanei_magic_findEdges() argument 435 sanei_magic_crop(SANE_Parameters * params, SANE_Byte * buffer, int top, int bot, int left, int right) sanei_magic_crop() argument 1596 getLeftEdge(int width, int height, int * top, int * bot, double slope, int * finXInter, int * finYInter) getLeftEdge() argument [all...] |
/third_party/tzdata/ |
H A D | strftime.c | 406 int bot; in _fmt() local 416 bot = ((yday + 11 - wday) % in _fmt() 422 top = bot - in _fmt() 432 if (yday >= bot) { in _fmt() 433 w = 1 + ((yday - bot) / in _fmt()
|
/third_party/skia/infra/bots/task_drivers/fm_driver/ |
H A D | fm_driver.go | 32 bot = flag.String("bot", "", "Name of the task.") 60 ctx = td.StartRun(projectId, taskId, bot, output, local) 160 // Query Gold for all known hashes when running as a bot. 189 // It's not strictly important that we sort, but it makes reading bot logs easier. 419 // If we're a bot (or acting as if we are one), kick off its work. 420 if *bot != "" { 421 parts := strings.Split(*bot, "-") 459 if strings.Contains(*bot, "TSAN") {
|
/third_party/skia/experimental/graphite/src/geom/ |
H A D | Rect.h | 19 * SIMD rect implementation. Vales are stored internally in the form: [left, top, -right, -bot]. 22 * (negative meaning, left >= right or top >= bot). 65 AI const float4& vals() const { return fVals; } // [left, top, -right, -bot]. in vals() 66 AI float4& vals() { return fVals; } // [left, top, -right, -bot]. in vals() 73 AI float bot() const { return -fVals.w(); } in bot() function in skgpu::Rect 81 AI void setBot(float bot) { fVals.w() = -bot; } in setBot() argument
|
/third_party/skia/src/opts/ |
H A D | SkBitmapProcState_opts.h | 116 bot = lerp_x(bl, br), in S32_alpha_D32_filter_DX() 117 sum = 16*top + (bot-top)*wy; in S32_alpha_D32_filter_DX() 216 bot = interpolate_in_x(A2,A3, B2,B3, interlaced_x_weights); in S32_alpha_D32_filter_DX() 218 // Interpolate in Y. As in the SSE2 code, we calculate top*(16-wy) + bot*wy in S32_alpha_D32_filter_DX() 219 // as 16*top + (bot-top)*wy to save a multiply. in S32_alpha_D32_filter_DX() 221 _mm_mullo_epi16(_mm_sub_epi16(bot, top), in S32_alpha_D32_filter_DX()
|
/third_party/skia/third_party/externals/freetype/src/pshinter/ |
H A D | pshglob.c | 319 FT_Int dim, top, bot, delta; in psh_blues_set_zones() local 339 bot = zone[1].org_bottom; in psh_blues_set_zones() 340 delta = bot - top; in psh_blues_set_zones() 347 zone[1].org_bottom = bot - fuzz; in psh_blues_set_zones()
|
/third_party/libwebsockets/lib/secure-streams/ |
H A D | policy-json.c | 321 backoff_t *bot; in lws_ss_policy_parser_cb() local 833 bot = a->heads[LTY_BACKOFF].b; in lws_ss_policy_parser_cb() 834 while (bot) { in lws_ss_policy_parser_cb() 835 if (!strncmp(ctx->buf, bot->name, ctx->npos)) { in lws_ss_policy_parser_cb() 836 a->curr[LTY_POLICY].p->retry_bo = &bot->r; in lws_ss_policy_parser_cb() 840 bot = bot->next; in lws_ss_policy_parser_cb()
|
/third_party/skia/third_party/externals/harfbuzz/util/ |
H A D | shape-options.hh | 52 (bot ? HB_BUFFER_FLAG_BOT : 0) | in setup_buffer() 299 hb_bool_t bot = false; 427 {"bot", 0, 0, G_OPTION_ARG_NONE, &this->bot, "Treat text as beginning-of-paragraph", nullptr},
|