Home
last modified time | relevance | path

Searched refs:b_type (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/python/ops/
Dsparse_grad.py172 b_type = b.dtype.base_dtype
173 if a_type != b_type:
175 "different types: ", a_type, " and ", b_type)
/external/python/cpython2/Include/
Dframeobject.h11 int b_type; /* what kind of block this is */ member
/external/python/cpython3/Include/
Dframeobject.h12 int b_type; /* what kind of block this is */ member
/external/python/cpython2/Modules/
Dcgen.py253 b_type, b_mode, b_factor, b_sub = database[n-1]
255 database[n-1] = b_type, 'i', a_factor, repr(i)
/external/python/cpython3/Lib/
Dfilecmp.py170 b_type = stat.S_IFMT(b_stat.st_mode)
171 if a_type != b_type:
/external/python/cpython2/Lib/
Dfilecmp.py161 b_type = stat.S_IFMT(b_stat.st_mode)
162 if a_type != b_type:
/external/tensorflow/tensorflow/core/kernels/
Dexample_parsing_ops_test.cc137 template <typename S, BenchmarkType b_type>
139 int benchmark_type = b_type;
/external/ltp/testcases/kernel/syscalls/fcntl/
Dfcntl14.c74 short b_type; /* SKIP means suppress fcntl call */ member
805 if ((thiscase->b_type) != SKIP) { in run_test()
806 flock.l_type = thiscase->b_type; in run_test()
/external/python/cpython2/Objects/
Dgenobject.c411 if (f->f_blockstack[i].b_type != SETUP_LOOP) in PyGen_NeedsFinalizing()
Dframeobject.c374 if (b->b_type == SETUP_WITH) { in frame_setlineno()
791 b->b_type = type; in PyFrame_BlockSetup()
/external/python/cpython3/Objects/
Dframeobject.c359 if (b->b_type == SETUP_FINALLY && in frame_setlineno()
802 b->b_type = type; in PyFrame_BlockSetup()
Dgenobject.c833 if (f->f_blockstack[i].b_type != SETUP_LOOP) in PyGen_NeedsFinalizing()
/external/python/cpython3/Python/
Dceval.c1837 if (b->b_type != EXCEPT_HANDLER) { in _PyEval_EvalFrameDefault()
1868 assert(b->b_type == EXCEPT_HANDLER); in _PyEval_EvalFrameDefault()
2991 assert(block->b_type == EXCEPT_HANDLER); in _PyEval_EvalFrameDefault()
3367 if (b->b_type == SETUP_LOOP && why == WHY_CONTINUE) { in _PyEval_EvalFrameDefault()
3376 if (b->b_type == EXCEPT_HANDLER) { in _PyEval_EvalFrameDefault()
3381 if (b->b_type == SETUP_LOOP && why == WHY_BREAK) { in _PyEval_EvalFrameDefault()
3386 if (why == WHY_EXCEPTION && (b->b_type == SETUP_EXCEPT in _PyEval_EvalFrameDefault()
3387 || b->b_type == SETUP_FINALLY)) { in _PyEval_EvalFrameDefault()
3428 if (b->b_type == SETUP_FINALLY) { in _PyEval_EvalFrameDefault()
/external/python/cpython2/Python/
Dceval.c3234 if (b->b_type == SETUP_LOOP && why == WHY_CONTINUE) { in PyEval_EvalFrameEx()
3248 if (b->b_type == SETUP_LOOP && why == WHY_BREAK) { in PyEval_EvalFrameEx()
3253 if (b->b_type == SETUP_FINALLY || in PyEval_EvalFrameEx()
3254 (b->b_type == SETUP_EXCEPT && in PyEval_EvalFrameEx()
3256 b->b_type == SETUP_WITH) { in PyEval_EvalFrameEx()
3269 if (b->b_type == SETUP_EXCEPT || in PyEval_EvalFrameEx()
3270 b->b_type == SETUP_WITH) { in PyEval_EvalFrameEx()
/external/vulkan-validation-layers/layers/
Dshader_validation.cpp309 …h(shader_module const *a, shader_module const *b, unsigned a_type, unsigned b_type, bool a_arrayed, in TypesMatch() argument
313 auto b_insn = b->get_def(b_type); in TypesMatch()
320 return TypesMatch(a, b, a_insn.word(2), b_type, false, b_arrayed, relaxed); in TypesMatch()
329 return TypesMatch(a, b, a_insn.word(2), b_type, a_arrayed, b_arrayed, false); in TypesMatch()
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_extensions.cpp1470 const uint32_t b_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1479 if (result_type != b_type) { in ValidateExtInst()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_extensions.cpp1470 const uint32_t b_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1479 if (result_type != b_type) { in ValidateExtInst()
/external/v8/src/arm64/
Dmacro-assembler-arm64.cc864 Label* label, ImmBranchType b_type) { in NeedExtraInstructionsOrRegisterBranch() argument
873 !Instruction::IsValidImmPCOffset(b_type, label->pos() - pc_offset()); in NeedExtraInstructionsOrRegisterBranch()
876 int max_reachable_pc = pc_offset() + Instruction::ImmBranchRange(b_type); in NeedExtraInstructionsOrRegisterBranch()