Home
last modified time | relevance | path

Searched refs:state1 (Results 1 – 6 of 6) sorted by relevance

/reactos/drivers/filesystems/btrfs/zstd/
H A Dfse_decompress.c191 FSE_DState_t state1; in FSE_decompress_usingDTable_generic() local
197 FSE_initDState(&state1, &bitD, dt); in FSE_decompress_usingDTable_generic()
204 op[0] = FSE_GETSYMBOL(&state1); in FSE_decompress_usingDTable_generic()
214 op[2] = FSE_GETSYMBOL(&state1); in FSE_decompress_usingDTable_generic()
226 *op++ = FSE_GETSYMBOL(&state1); in FSE_decompress_usingDTable_generic()
235 *op++ = FSE_GETSYMBOL(&state1); in FSE_decompress_usingDTable_generic()
/reactos/drivers/bus/acpi/busmgr/
H A Dpower.c154 int result = 0, state1; in acpi_power_get_list_state() local
168 result = acpi_power_get_state(list->handles[i], &state1); in acpi_power_get_list_state()
172 *state = state1; in acpi_power_get_list_state()
/reactos/modules/rostests/winetests/d3dx9_36/
H A Dcore.c1413 static void compare_device_state(struct device_state *state1, struct device_state *state2, BOOL equ… in compare_device_state() argument
1418 cmp = state1->render_target == state2->render_target; in compare_device_state()
1419 …ok(equal ? cmp : !cmp, "Render target %s %p, %p\n", message, state1->render_target, state2->render… in compare_device_state()
1421 cmp = state1->depth_stencil == state2->depth_stencil; in compare_device_state()
1422 …ok(equal ? cmp : !cmp, "Depth stencil surface %s %p, %p\n", message, state1->depth_stencil, state2… in compare_device_state()
1424 cmp = state1->viewport.X == state2->viewport.X && state1->viewport.Y == state2->viewport.Y in compare_device_state()
1425 …&& state1->viewport.Width == state2->viewport.Width && state1->viewport.Height == state2->viewport… in compare_device_state()
1427 state1->viewport.X, state1->viewport.Y, state1->viewport.Width, state1->viewport.Height, in compare_device_state()
/reactos/modules/rostests/winetests/gdiplus/
H A Dmetafile.c1998 GraphicsContainer state1, state2; in test_containers() local
2016 stat = GdipBeginContainer2(graphics, &state1); in test_containers()
2031 stat = GdipEndContainer(graphics, state1); in test_containers()
2046 stat = GdipSaveGraphics(graphics, &state1); in test_containers()
2049 stat = GdipRestoreGraphics(graphics, state1); in test_containers()
2056 stat = GdipBeginContainer2(graphics, &state1); in test_containers()
2065 stat = GdipEndContainer(graphics, state1); in test_containers()
2094 stat = GdipBeginContainer(graphics, &dstrect, &srcrect, UnitInch, &state1); in test_containers()
2106 stat = GdipEndContainer(graphics, state1); in test_containers()
2111 stat = GdipEndContainer(graphics, state1); in test_containers()
[all …]
/reactos/sdk/lib/3rdparty/libxml2/
H A Drelaxng.c1352 if ((state1 == NULL) || (state2 == NULL)) in xmlRelaxNGEqualValidState()
1354 if (state1 == state2) in xmlRelaxNGEqualValidState()
1356 if (state1->node != state2->node) in xmlRelaxNGEqualValidState()
1358 if (state1->seq != state2->seq) in xmlRelaxNGEqualValidState()
1360 if (state1->nbAttrLeft != state2->nbAttrLeft) in xmlRelaxNGEqualValidState()
1362 if (state1->nbAttrs != state2->nbAttrs) in xmlRelaxNGEqualValidState()
1364 if (state1->endvalue != state2->endvalue) in xmlRelaxNGEqualValidState()
1366 if ((state1->value != state2->value) && in xmlRelaxNGEqualValidState()
1367 (!xmlStrEqual(state1->value, state2->value))) in xmlRelaxNGEqualValidState()
1369 for (i = 0; i < state1->nbAttrs; i++) { in xmlRelaxNGEqualValidState()
[all …]
/reactos/modules/rostests/winetests/user32/
H A Dmsg.c6976 static void test_radio_dbg(HWND radio1, int state1, HWND radio2, int state2, HWND radio3, int state… in test_radio_dbg() argument
6981 ok_(__FILE__,line)(ret == state1 ? BST_CHECKED : BST_UNCHECKED, "got %08x\n", ret); in test_radio_dbg()
6988 static void set_radio(HWND radio1, int state1, HWND radio2, int state2, HWND radio3, int state3) in set_radio() argument
6990 SendMessageA(radio1, BM_SETCHECK, state1 ? BST_CHECKED : BST_UNCHECKED, 0); in set_radio()