/external/compiler-rt/test/asan/TestCases/ |
D | strncat_strict.c | 14 void test1(char *to, int to_size, char *from) { in test1() argument 16 char* r = strncat(to + to_size, from, 2); in test1() 19 void test2(char *to, int to_size, char *from) { in test2() argument 21 memset(to, 'z', to_size); in test2() 26 size_t to_size = 100; in main() local 27 char *to = (char*)malloc(to_size); in main() 33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from); in main() 37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from); in main()
|
D | strcat_strict.c | 14 void test1(char *to, int to_size, char *from) { in test1() argument 16 char* r = strcat(to + to_size, from); in test1() 19 void test2(char *to, int to_size, char *from) { in test2() argument 21 memset(to, 'z', to_size); in test2() 26 size_t to_size = 100; in main() local 27 char *to = (char*)malloc(to_size); in main() 33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from); in main() 37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from); in main()
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_str_test.cc | 150 size_t to_size = Ident(30); in TEST() local 152 char *to = Ident((char*)malloc(to_size)); in TEST() 157 strcpy(to + to_size - from_size, from); in TEST() 164 EXPECT_DEATH(Ident(strcpy(to + to_size, from)), RightOOBWriteMessage(0)); in TEST() 173 size_t to_size = Ident(20); in TEST() local 175 char *to = Ident((char*)malloc(to_size)); in TEST() 184 strncpy(to, from, to_size); in TEST() 185 strncpy(to, from + from_size - 1, to_size); in TEST() 186 strncpy(to + to_size - 1, from, 1); in TEST() 194 EXPECT_DEATH(Ident(strncpy(to + to_size, from, 1)), in TEST() [all …]
|
/external/libxkbcommon/xkbcommon/src/ |
D | darray.h | 47 #define darray_steal(arr, to, to_size) do { \ argument 49 if (to_size) \ 50 *(unsigned int *) (to_size) = (arr).size; \
|
/external/libnl/lib/route/qdisc/ |
D | fifo.c | 142 .to_size = sizeof(struct rtnl_fifo), 151 .to_size = sizeof(struct rtnl_fifo),
|
D | prio.c | 261 .to_size = sizeof(struct rtnl_prio), 273 .to_size = sizeof(struct rtnl_prio),
|
D | cbq.c | 171 .to_size = sizeof(struct rtnl_cbq), 183 .to_size = sizeof(struct rtnl_cbq),
|
D | ingress.c | 48 .to_size = sizeof(struct dumb),
|
D | dsmark.c | 383 .to_size = sizeof(struct rtnl_dsmark_qdisc), 395 .to_size = sizeof(struct rtnl_dsmark_class),
|
D | plug.c | 163 .to_size = sizeof(struct rtnl_plug),
|
D | red.c | 170 .to_size = sizeof(struct rtnl_red),
|
D | sfq.c | 237 .to_size = sizeof(struct rtnl_sfq),
|
D | htb.c | 613 .to_size = sizeof(struct rtnl_htb_qdisc), 622 .to_size = sizeof(struct rtnl_htb_class),
|
D | fq_codel.c | 361 .to_size = sizeof(struct rtnl_fq_codel),
|
D | tbf.c | 441 .to_size = sizeof(struct rtnl_tbf),
|
D | netem.c | 891 .to_size = sizeof(struct rtnl_netem),
|
/external/libnl/include/netlink-private/route/ |
D | tc-api.h | 46 size_t to_size; member
|
/external/libnl/lib/route/cls/ |
D | cgroup.c | 168 .to_size = sizeof(struct rtnl_cgroup),
|
D | fw.c | 198 .to_size = sizeof(struct rtnl_fw),
|
D | basic.c | 263 .to_size = sizeof(struct rtnl_basic),
|
D | u32.c | 692 .to_size = sizeof(struct rtnl_u32),
|
/external/libnl/lib/route/act/ |
D | mirred.c | 220 .to_size = sizeof(struct rtnl_mirred),
|
/external/iproute2/include/ |
D | bpf_api.h | 191 const void *to, uint32_t to_size, uint32_t seed);
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | bpf_helpers.h | 215 static int (*bpf_csum_diff)(void *from, int from_size, void *to, int to_size, int seed) =
|
/external/libnl/lib/route/ |
D | tc.c | 1019 if (!(size = tc->tc_ops->to_size)) in rtnl_tc_data()
|