Home
last modified time | relevance | path

Searched refs:random_y (Results 1 – 12 of 12) sorted by relevance

/dports/devel/godot-tools/godot-demo-projects-8d9d58f112d8/2d/role_playing_game/grid_movement/pawns/
H A DRandomActor.gd9 var random_y = DIRECTIONS[randi() % DIRECTIONS.size()]
15 random_y = 0
16 return Vector2(random_x, random_y)
/dports/graphics/geomorph/geomorph-0.60.1/src/hf/
H A Dline.h61 gint random_y; // 0 to 100 %; default 50 member
102 gint random_x, gint random_y,
H A Dline.c87 gint random_x, gint random_y, in fractal_polyline_new() argument
97 f->random_y = random_y; in fractal_polyline_new()
161 var_y = factor * ddist * 0.01 * (gdouble) f->random_y; in divide_n_draw()
H A Dline_dialog.c165 adj = gtk_adjustment_new (fl->random_y, 0, 100, 1, 1, 0.01); in line_dialog_new()
174 GTK_SIGNAL_FUNC (gint_adj_callb), (gpointer) &fl->random_y); in line_dialog_new()
/dports/devel/ncurses/ncurses-6.3/test/
H A Drain.c100 random_y(void) in random_y() function
380 last[j].y = random_y(); in main()
387 drop.y = random_y(); in main()
/dports/graphics/povray37/povray-3.7.0.10/libraries/openexr/IlmImf/
H A DImfTiledOutputFile.cpp1504 bool random_y = _data->lineOrder==RANDOM_Y; in copyPixels() local
1506 std::vector<int> dx_table(random_y ? numAllTiles : 1); in copyPixels()
1507 std::vector<int> dy_table(random_y ? numAllTiles : 1); in copyPixels()
1508 std::vector<int> lx_table(random_y ? numAllTiles : 1); in copyPixels()
1509 std::vector<int> ly_table(random_y ? numAllTiles : 1); in copyPixels()
1511 if(random_y) in copyPixels()
1534 if(random_y) in copyPixels()
/dports/graphics/opencv/opencv-4.5.3/3rdparty/openexr/IlmImf/
H A DImfTiledOutputFile.cpp1508 bool random_y = _data->lineOrder==RANDOM_Y; in copyPixels() local
1510 std::vector<int> dx_table(random_y ? numAllTiles : 1); in copyPixels()
1511 std::vector<int> dy_table(random_y ? numAllTiles : 1); in copyPixels()
1512 std::vector<int> lx_table(random_y ? numAllTiles : 1); in copyPixels()
1513 std::vector<int> ly_table(random_y ? numAllTiles : 1); in copyPixels()
1515 if(random_y) in copyPixels()
1538 if(random_y) in copyPixels()
/dports/graphics/openexr/openexr-3.1.4/src/lib/OpenEXR/
H A DImfTiledOutputFile.cpp1507 bool random_y = _data->lineOrder==RANDOM_Y; in copyPixels() local
1509 std::vector<int> dx_table(random_y ? numAllTiles : 1); in copyPixels()
1510 std::vector<int> dy_table(random_y ? numAllTiles : 1); in copyPixels()
1511 std::vector<int> lx_table(random_y ? numAllTiles : 1); in copyPixels()
1512 std::vector<int> ly_table(random_y ? numAllTiles : 1); in copyPixels()
1514 if(random_y) in copyPixels()
1537 if(random_y) in copyPixels()
/dports/graphics/freeimage/FreeImage/Source/OpenEXR/IlmImf/
H A DImfTiledOutputFile.cpp1504 bool random_y = _data->lineOrder==RANDOM_Y; in copyPixels() local
1506 std::vector<int> dx_table(random_y ? numAllTiles : 1); in copyPixels()
1507 std::vector<int> dy_table(random_y ? numAllTiles : 1); in copyPixels()
1508 std::vector<int> lx_table(random_y ? numAllTiles : 1); in copyPixels()
1509 std::vector<int> ly_table(random_y ? numAllTiles : 1); in copyPixels()
1511 if(random_y) in copyPixels()
1534 if(random_y) in copyPixels()
/dports/multimedia/libgav1/libgav1-0.17.0/src/
H A Dfilm_grain_test.cc1120 const int random_y = rnd(random_range); in TestAutoRegressiveFilterChroma() local
1121 luma_block_buffer_[y * kLumaWidth + x] = random_y + grain_min; in TestAutoRegressiveFilterChroma()
2027 const int random_y = rnd(random_range); in TestSpeed() local
2028 noise_image_[kPlaneY][y][x] = random_y + grain_min; in TestSpeed()
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DMessagesManager.h1052 int32 random_y = 0; member
H A DMessagesManager.cpp5105 random_y = get_random_y(message_id); in parse()
32467 while (*v != nullptr && (*v)->random_y >= message->random_y) { in treap_insert_message()
32504 if (left == nullptr || (right != nullptr && right->random_y > left->random_y)) { in treap_delete_message()
32674 message->random_y = get_random_y(message_id); in set_message_id()
34020 CHECK(old_message->random_y == new_message->random_y); in update_message()