Home | History | Annotate | Download | only in micro_bench

Lines Matching refs:or_mask

96 uint8_t *getAlignedMemory(uint8_t *orig_ptr, int alignment, int or_mask) {
103 ptr |= alignment | or_mask;
112 uint8_t *allocateAlignedMemory(size_t size, int alignment, int or_mask) {
116 return getAlignedMemory((uint8_t*)ptr, alignment, or_mask);
164 uint8_t *getColdBuffer(int num_buffers, size_t incr, int alignment, int or_mask) {
169 return getAlignedMemory(buffers, alignment, or_mask);
598 printf(" [--src_align ALIGN] [--src_or_mask OR_MASK]\n");
599 printf(" [--dst_align ALIGN] [--dst_or_mask OR_MASK]\n");
614 printf(" --dst_or_mask OR_MASK\n");
615 printf(" If the command supports it, or in the OR_MASK on to the destination pointer.\n");
616 printf(" The OR_MASK must be smaller than the dst_align value.\n");
622 printf(" --src_or_mask OR_MASK\n");
623 printf(" If the command supports it, or in the OR_MASK on to the source pointer.\n");
624 printf(" The OR_MASK must be smaller than the src_align value.\n");
641 printf(" micro_bench [--dst_align ALIGN] [--dst_or_mask OR_MASK] memcpy NUM_BYTES [ITERS]\n");
643 printf(" micro_bench [--dst_align ALIGN] [--dst_or_mask OR_MASK] memset NUM_BYTES [ITERS]\n");
647 printf(" micro_bench [--src_align ALIGN] [--src_or_mask OR_MASK] [--dst_align ALIGN] [--dst_or_mask] [--dst_str_size SIZE] strcat NUM_BYTES [ITERS]\n");
648 printf(" micro_bench [--src_align ALIGN] [--src_or_mask OR_MASK] [--dst_align ALIGN] [--dst_or_mask OR_MASK] strcmp NUM_BYTES [ITERS]\n");
649 printf(" micro_bench [--src_align ALIGN] [--src_or_mask OR_MASK] [--dst_align ALIGN] [--dst_or_mask] strcpy NUM_BYTES [ITERS]\n");
650 printf(" micro_bench [--dst_align ALIGN] [--dst_or_mask OR_MASK] strlen NUM_BYTES [ITERS]\n");