HomeSort by relevance Sort by last modified time
    Searched refs:op_size (Results 1 - 24 of 24) sorted by null

  /bionic/libc/arch-mips/string/
memchr.c 36 #define op_size sizeof (op_t) macro
114 for (; n > 0 && ((size_t) p % op_size) != 0; --n, ++p) {
134 * Check op_size byteswize after initial alignment
139 while (n >= 24 * op_size) {
144 n -= 8 * op_size;
146 while (n >= 8 * op_size) {
150 n -= 8 * op_size;
155 while (n >= 12 * op_size) {
159 n -= 4 * op_size;
161 while (n >= 4 * op_size) {
    [all...]
strnlen.c 36 #define op_size sizeof (op_t) macro
88 for (; n > 0 && ((size_t) p % op_size) != 0; --n, ++p) {
105 * Check op_size byteswize after initial alignment
107 while (n >= 4 * op_size) {
117 n -= 4 * op_size;
120 while (n >= op_size) {
123 n -= op_size;
strchr.c 36 #define op_size sizeof (op_t) macro
105 for ( ; *p != ch && ((size_t) p % op_size) != 0; p++)
strlen.c 36 #define op_size sizeof (op_t) macro
  /external/tensorflow/tensorflow/contrib/slim/python/slim/
model_analyzer.py 69 op_size = 0
76 op_size += output_size
78 print(op.name, '\t->', ', '.join(shapes), '[' + str(op_size) + ']')
79 total_size += op_size
  /external/tensorflow/tensorflow/core/ops/compat/
op_compatibility_lib.cc 61 for (int cur = 0; iter != stable_ops_->end() && cur < op_list_.op_size();
95 while (cur < op_list_.op_size() && start < in_op_history.op_size()) {
99 for (++cur; cur < op_list_.op_size(); ++cur) {
112 for (++start; start < in_op_history.op_size(); ++start) {
125 for (; end < in_op_history.op_size(); ++end) {
176 if (stable_ops_ == nullptr && start < in_op_history.op_size()) {
182 for (; cur < op_list_.op_size(); ++cur) {
op_compatibility_lib.h 54 int num_all_ops() const { return op_list_.op_size(); }
  /external/google-breakpad/src/third_party/libdisasm/
ia32_operand.c 40 unsigned int addr_meth, size_t op_size,
135 op_size);
138 op_size);
140 size = op_size;
147 if ( op_size == 1 ) {
156 &op->data.relative_far, op_size );
158 size = op_size;
248 size = (insn->op_size == 4) ? 2 : 1;
253 size = (insn->op_size == 4) ? 8 : 4;
257 size = (insn->op_size == 4) ? 4 : 2
383 unsigned int addr_meth, op_type, op_size, gen_regs; local
    [all...]
ia32_insn.c 90 insn->stack_mod_val = insn->op_size;
264 size_t size, op_size; local
273 insn->op_size = ( prefixes & PREFIX_OP_SIZE ) ? 4 : 2;
276 insn->op_size = ( prefixes & PREFIX_OP_SIZE ) ? 2 : 4;
306 op_size = ia32_decode_operand( buf, buf_len, insn, raw_insn->dest,
309 buf += op_size;
310 buf_len -= op_size;
311 size = op_size;
313 op_size = ia32_decode_operand( buf, buf_len, insn, raw_insn->src,
315 buf += op_size;
    [all...]
ia32_invariant.c 144 unsigned int addr_size, op_size, mode_16; local
150 op_size = ( prefixes & PREFIX_OP_SIZE ) ? 4 : 2;
154 op_size = ( prefixes & PREFIX_OP_SIZE ) ? 2 : 4;
167 size = (op_size == 4) ? 2 : 1;
170 size = (op_size == 4) ? 4 : 2;
173 size = (op_size == 4) ? 6 : 4;
libdis.h 501 unsigned char op_size; /* default operand size : 2 or 4 */ member in struct:__anon21003
    [all...]
  /external/linux-kselftest/tools/testing/selftests/networking/timestamping/
rxtimestamp.c 113 { "op_size", required_argument, 0, 's' },
120 static int op_size = 10 * 1024; variable
159 char *buf = malloc(op_size);
161 memset(buf, 'z', op_size);
162 r = write(src, buf, op_size);
274 int read_size = op_size;
350 op_size = atoi(optarg);
  /toolchain/binutils/binutils-2.27/gas/config/
tc-h8300.c 1106 int op_size = op & SIZE; local
1117 if (x_size != op_size)
1129 if (op_size == L_P)
1130 op_size = (Hmode ? L_32 : L_16);
1133 if (op_size != x_size)
1220 if (op_size != x_size)
1229 if (x_size == L_24 && op_size == L_32)
1235 if (((x_size == L_16 && op_size == L_16U)
1236 || (x_size == L_8 && op_size == L_8U)
1237 || (x_size == L_3 && op_size == L_3NZ)
    [all...]
tc-xtensa.c 5079 int op_size; local
5118 int op_size; local
    [all...]
  /external/tensorflow/tensorflow/core/framework/
graph_def_util_test.cc 267 ASSERT_EQ(stripped_op_list.op_size(), 2);
310 ASSERT_EQ(stripped_op_list.op_size(), 1);
op_def_util.cc 748 for (int i = 0; i < op_list->op_size(); ++i) {
  /external/tensorflow/tensorflow/core/api_def/
api_test.cc 65 CHECK_EQ(api_defs.op_size(), 1);
  /external/google-breakpad/src/third_party/libdisasm/swig/
libdisasm_oop.i 479 unsigned char op_size;
1016 unsigned int op_size() {
  /external/v8/src/x87/
disasm-x87.cc 663 int op_size = PrintOperands(mnem, REG_OPER_OP_ORDER, data + 2); local
664 return 2 + op_size; // includes 0x0F
    [all...]
  /external/tensorflow/tensorflow/python/eager/
python_eager_op_gen.cc     [all...]
  /external/tensorflow/tensorflow/python/framework/
python_op_gen.cc 808 out->Reserve(ops.op_size());
    [all...]
  /external/v8/src/ia32/
disasm-ia32.cc 727 int op_size = PrintOperands(mnem, REG_OPER_OP_ORDER, data + 2); local
728 return 2 + op_size; // includes 0x0F
    [all...]
  /external/tensorflow/tensorflow/c/
c_api_test.cc 200 ASSERT_EQ(op_list.op_size(), 1);
334 EXPECT_GT(op_list.op_size(), 0);
    [all...]
  /external/v8/src/arm/
assembler-arm.cc     [all...]

Completed in 527 milliseconds