| /src/external/gpl2/dtc/dist/tests/ |
| find_property.c | 26 check_property_cell(fdt, 0, "prop-int", TEST_VALUE_1);
|
| getprop.c | 27 check_getprop_cell(fdt, 0, "prop-int", TEST_VALUE_1);
|
| setprop_inplace.c | 35 intp = check_getprop_cell(fdt, 0, "prop-int", TEST_VALUE_1); 38 err = fdt_setprop_inplace_cell(fdt, 0, "prop-int", ~TEST_VALUE_1); 41 ~TEST_VALUE_1, fdt_strerror(err)); 42 intp = check_getprop_cell(fdt, 0, "prop-int", ~TEST_VALUE_1);
|
| sized_cells.c | 45 TEST_VALUE_1 >> 24}; 57 expected_16[5] = cpu_to_fdt16(TEST_VALUE_1 >> 16); 58 expected_32[5] = cpu_to_fdt32(TEST_VALUE_1);
|
| rw_tree1.c | 54 CHECK(fdt_setprop_u32(fdt, 0, "prop-int", TEST_VALUE_1)); 61 CHECK(fdt_setprop_cell(fdt, s1, "prop-int", TEST_VALUE_1)); 65 CHECK(fdt_setprop_cell(fdt, offset, "prop-int", TEST_VALUE_1));
|
| get_prop_offset.c | 32 TEST_VALUE_1))
|
| add_subnode_with_nops.c | 51 CHECK(fdt_property_cell(fdt, "prop1", TEST_VALUE_1)); 61 check_getprop_cell(fdt, 0, "prop1", TEST_VALUE_1);
|
| fs_tree1.c | 97 mkfile_u32("prop-int", TEST_VALUE_1); 108 mkfile_u32("prop-int", TEST_VALUE_1); 115 mkfile_u32("prop-int", TEST_VALUE_1);
|
| nop_property.c | 32 intp = check_getprop_cell(fdt, 0, "prop-int", TEST_VALUE_1);
|
| testdata.h | 22 #define TEST_VALUE_1 0xdeadbeef
|
| node_offset_by_prop_value.c | 84 check_search_cell(fdt, "prop-int", TEST_VALUE_1, 0, subnode1_offset, 94 check_search_cell(fdt, "prop-int", TEST_VALUE_1+1, -FDT_ERR_NOTFOUND);
|
| subnode_offset.c | 62 check_property_cell(fdt, subnode1_offset, "prop-int", TEST_VALUE_1); 69 check_property_cell(fdt, subsubnode1_offset, "prop-int", TEST_VALUE_1);
|
| sw_states.c | 78 CHECK_OK(fdt_property_u32(fdt, "prop-int", TEST_VALUE_1)); 87 CHECK_OK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_1)); 91 CHECK_OK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_1));
|
| appendprop1.c | 50 CHECK(fdt_appendprop_cell(fdt, 0, "prop-int", TEST_VALUE_1));
|
| del_property.c | 36 intp = check_getprop_cell(fdt, 0, "prop-int", TEST_VALUE_1);
|
| rw_oom.c | 62 CHECK(fdt_setprop_u32(fdt, 0, "prop-int", TEST_VALUE_1));
|
| setprop.c | 43 intp = check_getprop_cell(fdt, 0, "prop-int", TEST_VALUE_1);
|
| trees.S | 87 PROP_INT(test_tree1, prop_int, TEST_VALUE_1) 96 PROP_INT(test_tree1, prop_int, TEST_VALUE_1) 101 PROP_INT(test_tree1, prop_int, TEST_VALUE_1) 200 PROP_INT(bad_prop_char, prop, TEST_VALUE_1)
|
| nop_node.c | 34 check_getprop_cell(fdt, subnode1_offset, "prop-int", TEST_VALUE_1);
|
| sw_tree1.c | 177 CHECK(fdt_property_u32(fdt, "prop-int", TEST_VALUE_1)); 186 CHECK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_1)); 192 CHECK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_1));
|
| del_node.c | 39 check_getprop_cell(fdt, subnode1_offset, "prop-int", TEST_VALUE_1);
|
| pylibfdt_tests.py | 30 TEST_VALUE_1 = 0xdeadbeef 430 self.fdt.setprop_u32(node, prop, TEST_VALUE_1) 431 self.assertEquals(struct.pack('>I', TEST_VALUE_1), 512 sw.property_u32('prop-int', TEST_VALUE_1) 514 sw.property_u32('prop-int', TEST_VALUE_1) 523 sw.property_cell('prop-int', TEST_VALUE_1) 526 sw.property_cell('prop-int', TEST_VALUE_1)
|