Home
last modified time | relevance | path

Searched refs:pos_y (Results 1 – 17 of 17) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvsrc_sierpinski.c49 int pos_x, pos_y; member
77 int pos_y = y + s->pos_y; in fill_sierpinski() local
79 while (pos_x != 0 && pos_y != 0) { in fill_sierpinski()
80 if (FFABS(pos_x % 3) == 1 && FFABS(pos_y % 3) == 1) in fill_sierpinski()
84 pos_y /= 3; in fill_sierpinski()
102 if ((s->pos_x + x) & (s->pos_y + y)) { in draw_triangle_slice()
167 if (s->pos_x == s->dest_x && s->pos_y == s->dest_y) { in draw_sierpinski()
179 if (s->pos_y < s->dest_y) in draw_sierpinski()
180 s->pos_y++; in draw_sierpinski()
181 else if (s->pos_y > s->dest_y) in draw_sierpinski()
[all …]
/third_party/node/test/fixtures/wpt/dom/events/non-cancelable-when-passive/resources/
Dscrolling.js25 const pos_y = Math.floor(window.innerHeight / 2);
30 .scroll(pos_x, pos_y, delta_x, delta_y).send();
/third_party/astc-encoder/Test/
Dastc_trace_analysis.py76 def __init__(self, pos_x, pos_y, pos_z, error_target): argument
78 self.pos_y = pos_y
/third_party/skia/third_party/externals/freetype/src/psaux/
Dcffdecode.c333 builder->pos_y = ady; in cff_operator_seac()
359 builder->pos_y = 0; in cff_operator_seac()
542 y = builder->pos_y; in cff_decoder_parse_charstrings()
2001 y = decoder->builder.pos_y; in cff_decoder_parse_charstrings()
2019 y = ADD_LONG( decoder->builder.pos_y, args[1] ); in cff_decoder_parse_charstrings()
2031 y = ADD_LONG( decoder->builder.pos_y, args[1] ); in cff_decoder_parse_charstrings()
Dt1decode.c398 decoder->builder.pos_y = ady; in t1operator_seac()
417 decoder->builder.pos_y = 0; in t1operator_seac()
501 y = orig_y = builder->pos_y; in t1_decoder_parse_charstrings()
1239 orig_y = y = builder->pos_y; in t1_decoder_parse_charstrings()
1276 y = ADD_LONG( builder->pos_y, top[1] ); in t1_decoder_parse_charstrings()
Dpsobjs.c1605 builder->pos_y = 0; in t1_builder_init()
1880 builder->pos_y = 0; in cff_builder_init()
2137 ps_builder->pos_y = &t1builder->pos_y; in ps_builder_init()
2162 ps_builder->pos_y = &cffbuilder->pos_y; in ps_builder_init()
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
Dpsaux.h573 FT_Pos* pos_y; member
837 FT_Pos pos_y; member
1117 FT_Pos pos_y; member
/third_party/mesa3d/src/amd/vulkan/
Dradv_meta_blit2d.c495 nir_ssa_def *pos_y = nir_channel(b, tex_pos, 1); in build_nir_buffer_fetch() local
496 pos_y = nir_imul(b, pos_y, width); in build_nir_buffer_fetch()
497 pos_x = nir_iadd(b, pos_x, pos_y); in build_nir_buffer_fetch()
Dradv_meta_bufimage.c76 nir_ssa_def *pos_y = nir_channel(&b, global_id, 1); in build_nir_itob_compute_shader() local
78 nir_ssa_def *tmp = nir_imul(&b, pos_y, stride); in build_nir_itob_compute_shader()
233 nir_ssa_def *pos_y = nir_channel(&b, global_id, 1); in build_nir_btoi_compute_shader() local
235 nir_ssa_def *buf_coord = nir_imul(&b, pos_y, stride); in build_nir_btoi_compute_shader()
408 nir_ssa_def *pos_y = nir_channel(&b, global_id, 1); in build_nir_btoi_r32g32b32_compute_shader() local
410 nir_ssa_def *buf_coord = nir_imul(&b, pos_y, stride); in build_nir_btoi_r32g32b32_compute_shader()
Dradv_cmd_buffer.c1071 int32_t pos_y = sample_locs[i].y; in radv_compute_sample_locs_pixel() local
1077 sample_locs_pixel[sample_reg_idx] |= (pos_y & 0xf) << shift_y; in radv_compute_sample_locs_pixel()
/third_party/skia/third_party/externals/libwebp/examples/
Dvwebp.c229 static void HandleKey(unsigned char key, int pos_x, int pos_y) { in HandleKey() argument
234 (void)pos_y; in HandleKey()
/third_party/skia/experimental/pvg/
Ddraw_msg.proto242 repeated float pos_y = 3; // must match counts with glyphs OR have 1 entry field
/third_party/python/Lib/tkinter/test/test_ttk/
Dtest_widgets.py1771 pos_y = set()
1778 pos_y.add(i)
1781 self.assertEqual(len(pos_y), 2) # item1 and item2 y pos
1782 for y in pos_y:
/third_party/ffmpeg/libavcodec/
Dtiff.c964 int pos_x = 0, pos_y = 0; in dng_decode_tiles() local
1006 ret = dng_decode_jpeg(avctx, frame, tile_byte_count, pos_x, pos_y, tile_width, tile_length); in dng_decode_tiles()
1015 pos_y += tile_length; in dng_decode_tiles()
/third_party/mesa3d/src/gallium/auxiliary/draw/
Ddraw_llvm.c1505 LLVMValueRef pos_x, pos_y, pos_z, pos_w; in generate_clipmask() local
1541 pos_y = LLVMBuildLoad2(builder, vec_type, outputs[pos][1], ""); /*y0 y1 .. yn */ in generate_clipmask()
1552 cv_y = pos_y; in generate_clipmask()
1581 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, pos_y, pos_w); in generate_clipmask()
1587 test = LLVMBuildFAdd(builder, pos_y, pos_w, ""); in generate_clipmask()
/third_party/skia/third_party/externals/imgui/
Dimgui.cpp2287 static void SetCursorPosYAndSetupForPrevLine(float pos_y, float line_height) in SetCursorPosYAndSetupForPrevLine() argument
2294 float off_y = pos_y - window->DC.CursorPos.y; in SetCursorPosYAndSetupForPrevLine()
2295 window->DC.CursorPos.y = pos_y; in SetCursorPosYAndSetupForPrevLine()
2296 window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, pos_y); in SetCursorPosYAndSetupForPrevLine()
/third_party/mesa3d/src/imgui/
Dimgui.cpp2186 static void SetCursorPosYAndSetupDummyPrevLine(float pos_y, float line_height) in SetCursorPosYAndSetupDummyPrevLine() argument
2191 ImGui::SetCursorPosY(pos_y); in SetCursorPosYAndSetupDummyPrevLine()