Home | History | Annotate | Download | only in tests

Lines Matching refs:iters

29 static void BM_string_memcmp(int iters, int nbytes) {
37 for (int i = 0; i < iters; ++i) {
42 SetBenchmarkBytesProcessed(int64_t(iters) * int64_t(nbytes));
48 static void BM_string_memcpy(int iters, int nbytes) {
54 for (int i = 0; i < iters; ++i) {
59 SetBenchmarkBytesProcessed(int64_t(iters) * int64_t(nbytes));
65 static void BM_string_memmove(int iters, int nbytes) {
71 for (int i = 0; i < iters; ++i) {
76 SetBenchmarkBytesProcessed(int64_t(iters) * int64_t(nbytes));
81 static void BM_string_memset(int iters, int nbytes) {
86 for (int i = 0; i < iters; ++i) {
91 SetBenchmarkBytesProcessed(int64_t(iters) * int64_t(nbytes));
96 static void BM_string_strlen(int iters, int nbytes) {
104 for (int i = 0; i < iters; ++i) {
109 SetBenchmarkBytesProcessed(int64_t(iters) * int64_t(nbytes));