Searched refs:ret_str (Results 1 – 9 of 9) sorted by relevance
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/strncpy/ |
D | 1-1.c | 51 char *ret_str; in main() local 64 ret_str = strncpy(sample_str_2, sample_str_1, num_bytes); in main() 70 && ret_str == sample_str_2) { in main() 75 } else if (ret_str != sample_str_2) { in main() 78 , sample_str_2, ret_str); in main()
|
D | 2-1.c | 52 char *ret_str; in main() local 63 ret_str = strncpy(sample_str_2, sample_str_1, i + EXTRA_BYTES); in main() 71 } else if (ret_str != sample_str_2) { in main() 74 , sample_str_2, ret_str); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/strlen/ |
D | 1-1.c | 46 char *ret_str; in main() local 51 ret_str = random_string(i); in main() 52 obtained_len = strlen(ret_str); in main() 60 free(ret_str); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/strcpy/ |
D | 1-1.c | 49 char *ret_str; in main() local 60 ret_str = strcpy(sample_str_2, sample_str_1); in main() 67 } else if (ret_str != sample_str_2) { in main() 70 , sample_str_2, ret_str); in main()
|
/third_party/ffmpeg/libavformat/tests/ |
D | seek.c | 34 static const char *ret_str(int v) in ret_str() function 132 …printf("ret:%-10s st:%2d flags:%d dts:%s pts:%s pos:%7" PRId64 " size:%6d", ret_str(ret), pkt.stre… in main() 135 printf("ret:%s", ret_str(ret)); // necessary to avoid trailing whitespace in main() 152 printf("ret:%-10s st:%2d flags:%d ts:%s\n", ret_str(ret), stream_id, i&1, ts_buf); in main()
|
/third_party/mesa3d/src/mesa/main/ |
D | atifragshader.c | 102 static char ret_str[1024]; in create_dst_mod_str() local 104 memset(ret_str, 0, 1024); in create_dst_mod_str() 106 strncat(ret_str, "|2X", 1024); in create_dst_mod_str() 109 strncat(ret_str, "|4X", 1024); in create_dst_mod_str() 112 strncat(ret_str, "|8X", 1024); in create_dst_mod_str() 114 strncat(ret_str, "|HA", 1024); in create_dst_mod_str() 116 strncat(ret_str, "|QU", 1024); in create_dst_mod_str() 118 strncat(ret_str, "|EI", 1024); in create_dst_mod_str() 121 strncat(ret_str, "|SAT", 1024); in create_dst_mod_str() 123 if (strlen(ret_str) == 0) in create_dst_mod_str() [all …]
|
/third_party/ffmpeg/libavutil/ |
D | bprint.c | 235 int av_bprint_finalize(AVBPrint *buf, char **ret_str) in av_bprint_finalize() argument 241 if (ret_str) { in av_bprint_finalize() 254 *ret_str = str; in av_bprint_finalize()
|
D | bprint.h | 201 int av_bprint_finalize(AVBPrint *buf, char **ret_str);
|
/third_party/glslang/glslang/Include/ |
D | Common.h | 242 std::string ret_str(qstr.c_str()); 243 return ret_str;
|