/external/dtc/tests/ |
D | nop_property.c | 22 const uint32_t *intp; in main() local 30 intp = check_getprop_cell(fdt, 0, "prop-int", TEST_VALUE_1); in main() 31 verbose_printf("int value was 0x%08x\n", *intp); in main() 37 intp = fdt_getprop(fdt, 0, "prop-int", &lenerr); in main() 38 if (intp) in main()
|
D | del_property.c | 22 const uint32_t *intp; in main() local 34 intp = check_getprop_cell(fdt, 0, "prop-int", TEST_VALUE_1); in main() 35 verbose_printf("int value was 0x%08x\n", *intp); in main() 41 intp = fdt_getprop(fdt, 0, "prop-int", &lenerr); in main() 42 if (intp) in main()
|
D | setprop_inplace.c | 23 const uint32_t *intp; in main() local 33 intp = check_getprop_cell(fdt, 0, "prop-int", TEST_VALUE_1); in main() 35 verbose_printf("Old int value was 0x%08x\n", *intp); in main() 40 intp = check_getprop_cell(fdt, 0, "prop-int", ~TEST_VALUE_1); in main() 41 verbose_printf("New int value is 0x%08x\n", *intp); in main()
|
D | setprop.c | 26 const uint32_t *intp; in main() local 41 intp = check_getprop_cell(fdt, 0, "prop-int", TEST_VALUE_1); in main() 43 verbose_printf("Old int value was 0x%08x\n", *intp); in main()
|
/external/llvm-project/clang/test/CXX/special/class.dtor/ |
D | p10-0x.cpp | 29 typedef int *intp; in a() typedef 32 …i->~decltype(intp())(); // expected-error{{member reference type 'int' is not a pointer; did you m… in a() 34 …i.~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the… in a() 37 pi.~decltype(intp())(); in a() 38 …pi->~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match t… in a()
|
/external/clang/test/CXX/special/class.dtor/ |
D | p10-0x.cpp | 29 typedef int *intp; in a() typedef 32 …i->~decltype(intp())(); // expected-error{{member reference type 'int' is not a pointer; did you m… in a() 34 …i.~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the… in a() 37 pi.~decltype(intp())(); in a() 38 …pi->~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match t… in a()
|
/external/clang/test/SemaCXX/ |
D | functional-cast.cpp | 66 typedef int *intp; in t_cc() typedef 67 int *pi = intp(ar); in t_cc() 210 typedef int *intp; in t_529_10() typedef 211 (void)intp((void*)0); in t_529_10() 214 (void)intp((const void*)0); // const_cast appended in t_529_10() 266 typedef int *intp; in constness() typedef 267 (void)intp(icp); // const_cast appended in constness() 270 int *ip = intp(icpcpp); in constness()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | functional-cast.cpp | 66 typedef int *intp; in t_cc() typedef 67 int *pi = intp(ar); in t_cc() 210 typedef int *intp; in t_529_10() typedef 211 (void)intp((void*)0); in t_529_10() 214 (void)intp((const void*)0); // const_cast appended in t_529_10() 266 typedef int *intp; in constness() typedef 267 (void)intp(icp); // const_cast appended in constness() 270 int *ip = intp(icpcpp); in constness()
|
/external/e2fsprogs/debugfs/ |
D | logdump.c | 723 int *intp; in do_hexdump() local 727 intp = (int *) buf; in do_hexdump() 733 fprintf(out_file, "%08x ", *intp++); in do_hexdump()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | utils.h | 155 intptr_t intp = reinterpret_cast<intptr_t>(p); 156 return reinterpret_cast<T*>(intp + offset);
|
/external/clang/test/CXX/drs/ |
D | dr2xx.cpp | 855 typedef int *intp; typedef 856 int *p = intp(); 857 int a[fold(intp() ? -1 : 1)];
|
/external/llvm-project/clang/test/CXX/drs/ |
D | dr2xx.cpp | 895 typedef int *intp; typedef 896 int *p = intp(); 897 int a[fold(intp() ? -1 : 1)];
|
/external/bc/src/ |
D | num.c | 1865 BcNum intp, fracp1, fracp2, digit, flen1, flen2, *n1, *n2, *temp; in bc_num_printNum() local 1918 bc_num_createCopy(&intp, n); in bc_num_printNum() 1924 bc_num_truncate(&intp, intp.scale); in bc_num_printNum() 1926 bc_num_sub(n, &intp, &fracp1, 0); in bc_num_printNum() 1944 if (vm.last_rem != 0) bc_num_printPrepare(&intp, vm.last_rem, vm.last_pow); in bc_num_printNum() 1946 for (i = 0; i < intp.len; ++i) { in bc_num_printNum() 1948 acc = (BcBigDig) intp.num[i]; in bc_num_printNum() 1950 for (j = 0; j < exp && (i < intp.len - 1 || acc != 0); ++j) in bc_num_printNum() 2031 bc_num_free(&intp); in bc_num_printNum()
|
/external/toybox/toys/pending/ |
D | bc.c | 1957 BcNum intp, fracp, digit, frac_len; in bc_num_printNum() local 1972 bc_num_createCopy(&intp, n); in bc_num_printNum() 1974 bc_num_truncate(&intp, intp.rdx); in bc_num_printNum() 1975 s = bc_num_sub(n, &intp, &fracp, 0); in bc_num_printNum() 1978 while (intp.len) { in bc_num_printNum() 1979 s = bc_num_divmod(&intp, base, &intp, &digit, 0); in bc_num_printNum() 1998 bc_num_ulong2num(&intp, dig); in bc_num_printNum() 1999 s = bc_num_sub(&fracp, &intp, &fracp, 0); in bc_num_printNum() 2010 bc_num_free(&intp); in bc_num_printNum()
|
/external/mdnsresponder/Clients/ |
D | dns-sd.c | 1236 Opaque16 intp = { { IntPortAsNumber >> 8, IntPortAsNumber & 0xFF } }; in main() local 1238 …err = DNSServiceNATPortMappingCreate(&client, 0, 0, prot, intp.NotAnInteger, extp.NotAnInteger, tt… in main()
|
/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
D | np_math_ops.py | 1184 return np_array_ops.array(tf_ans, dtype=np.intp)
|