/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluDefs.hpp | 33 #define GLU_CHECK_CALL_ERROR(CALL, ERR) do { CALL; GLU_EXPECT_NO_ERROR(ERR, #CALL); } while (deGetFalse()) 34 #define GLU_CHECK_CALL(CALL) do { CALL; GLU_EXPECT_NO_ERROR(glGetError(), #CALL); } while (deGetFalse()) 38 #define GLU_CHECK_GLW_CALL(GL, CALL) do { (GL).CALL; GLU_EXPECT_NO_ERROR((GL).getError(), #CALL); } while (deGetFalse())
|
/third_party/python/Python/ |
H A D | ast_opt.c | 640 #define CALL(FUNC, TYPE, ARG) \ macro 687 CALL(astfold_body, asdl_seq, node_->v.Module.body); in astfold_mod() 693 CALL(astfold_expr, expr_ty, node_->v.Expression.body); in astfold_mod() 717 CALL(astfold_expr, expr_ty, node_->v.BinOp.left); in astfold_expr() 718 CALL(astfold_expr, expr_ty, node_->v.BinOp.right); in astfold_expr() 719 CALL(fold_binop, expr_ty, node_); in astfold_expr() 722 CALL(astfold_expr, expr_ty, node_->v.UnaryOp.operand); in astfold_expr() 723 CALL(fold_unaryop, expr_ty, node_); in astfold_expr() 726 CALL(astfold_arguments, arguments_ty, node_->v.Lambda.args); in astfold_expr() 727 CALL(astfold_exp in astfold_expr() 1071 #undef CALL global() macro [all...] |
H A D | specialize.c | 26 [CALL] = CALL_ADAPTIVE, 120 err += add_stat_dict(stats, CALL, "call"); in _Py_GetSpecializationStats() 1490 SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CALL_PEP_523); in specialize_py_call() 1494 SPECIALIZATION_FAIL(CALL, SPEC_FAIL_CALL_KWNAMES); in specialize_py_call() 1498 SPECIALIZATION_FAIL(CALL, kind); in specialize_py_call() 1506 SPECIALIZATION_FAIL(CALL, SPEC_FAIL_WRONG_NUMBER_ARGUMENTS); in specialize_py_call() 1513 SPECIALIZATION_FAIL(CALL, SPEC_FAIL_OUT_OF_RANGE); in specialize_py_call() 1518 SPECIALIZATION_FAIL(CALL, SPEC_FAIL_OUT_OF_VERSIONS); in specialize_py_call() 1680 assert(_PyOpcode_Caches[CALL] == INLINE_CACHE_ENTRIES_CALL); in _Py_Specialize_Call() 1688 SPECIALIZATION_FAIL(CALL, call_fail_kin in _Py_Specialize_Call() [all...] |
/third_party/glfw/tests/ |
H A D | allocator.c | 35 #define CALL(x) (function_name = #x, x) macro 118 if (!CALL(glfwInit)()) in main() 121 GLFWwindow* window = CALL(glfwCreateWindow)(400, 400, "Custom allocator test", NULL, NULL); in main() 128 CALL(glfwMakeContextCurrent)(window); in main() 130 CALL(glfwSwapInterval)(1); in main() 132 while (!CALL(glfwWindowShouldClose)(window)) in main() 135 CALL(glfwSwapBuffers)(window); in main() 136 CALL(glfwWaitEvents)(); in main() 139 CALL(glfwTerminate)(); in main()
|
/third_party/protobuf/kokoro/release/python/windows/ |
H A D | build_artifacts.bat | 38 CALL build_single_artifact.bat || goto :error 43 CALL build_single_artifact.bat || goto :error 48 CALL build_single_artifact.bat || goto :error 53 CALL build_single_artifact.bat || goto :error 58 CALL build_single_artifact.bat || goto :error 63 CALL build_single_artifact.bat || goto :error 68 CALL build_single_artifact.bat || goto :error 73 CALL build_single_artifact.bat || goto :error
|
/third_party/vk-gl-cts/framework/egl/ |
H A D | egluDefs.hpp | 30 #define EGLU_CHECK_CALL(EGLW, CALL) do { (EGLW).CALL; eglu::checkError((EGLW).getError(), #CALL, __FILE__, __LINE__); } while (deGetFalse()) 31 #define EGLU_CHECK_CALL_FPTR(EGLW, CALL) do { CALL; eglu::checkError((EGLW).getError(), #CALL, __FILE__, __LINE__); } while (deGetFalse())
|
/third_party/python/Include/internal/ |
H A D | pycore_opcode.h | 52 [CALL] = 4, 83 [CALL] = CALL, 84 [CALL_ADAPTIVE] = CALL, 86 [CALL_PY_EXACT_ARGS] = CALL, 87 [CALL_PY_WITH_DEFAULTS] = CALL, 413 [CALL] = "CALL",
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglImageTests.cpp | 145 #define CHECK_EXT_CALL_RET(CALL, EXPECT_RETURN_VALUE, EXPECT_ERROR) checkCallReturn(m_eglTestCtx, #CALL, CALL, (EXPECT_RETURN_VALUE), (EXPECT_ERROR)) 146 #define CHECK_EXT_CALL_ERR(CALL, EXPECT_ERROR) checkCallError(m_eglTestCtx, #CALL, CALL, (EXPECT_ERROR))
|
H A D | teglGetFrameTimestampsTests.cpp | 83 #define CHECK_NAKED_EGL_CALL(EGLW, CALL) do { CALL; eglu::checkError((EGLW).getError(), #CALL, __FILE__, __LINE__); } while (deGetFalse())
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
H A D | LanaiAsmPrinter.cpp | 150 assert((MI->getOpcode() == Lanai::CALL || MI->getOpcode() == Lanai::CALLR) && in emitCallInstruction() 174 if (MI->getOpcode() == Lanai::CALL) { in emitCallInstruction()
|
H A D | LanaiISelLowering.h | 32 // CALL - These operations represent an abstract call instruction, which 34 CALL, enumerator
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | upsampling_sse2.c | 217 #define YUV444_FUNC(FUNC_NAME, CALL, CALL_C, XSTEP) \ 225 CALL(y + i, u + i, v + i, dst + i * (XSTEP)); \
|
H A D | upsampling_sse41.c | 204 #define YUV444_FUNC(FUNC_NAME, CALL, CALL_C, XSTEP) \ 212 CALL(y + i, u + i, v + i, dst + i * (XSTEP)); \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/ |
H A D | AVRISelDAGToDAG.cpp | 416 template <> bool AVRDAGToDAGISel::select<AVRISD::CALL>(SDNode *N) { in select() 546 case AVRISD::CALL: return select<AVRISD::CALL>(N); in trySelect()
|
H A D | AVRISelLowering.h | 34 CALL, enumerator
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/ |
H A D | function_call_mutator.js | 128 'runNearStackLimit(() => { return CALL });'); 136 CALL: path.node,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
H A D | BPFISelLowering.h | 27 CALL, 86 // Lower a call into CALLSEQ_START - BPFISD:CALL - CALLSEQ_END chain
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
H A D | LeonPasses.cpp | 86 if (Opcode == SP::CALL && MI.getNumOperands() > 0) { in runOnMachineFunction()
|
H A D | DelaySlotFiller.cpp | 298 case SP::CALL: break; in insertCallDefsUses() 303 assert(Reg.isReg() && "CALL first operand is not a register."); in insertCallDefsUses() 304 assert(Reg.isUse() && "CALL first operand is not a use."); in insertCallDefsUses() 361 case SP::CALL: structSizeOpNum = 1; break; in needsUnimp()
|
H A D | SparcAsmPrinter.cpp | 109 CallInst.setOpcode(SP::CALL); in EmitCall() 300 if (MI->getOpcode() == SP::CALL) in printOperand()
|
/third_party/python/Include/ |
H A D | opcode.h | 116 #define CALL 171 macro
|
/third_party/mesa3d/src/mesa/main/ |
H A D | attrib.c | 643 #define TEST_AND_CALL1(FIELD, CALL) do { \ 645 _mesa_##CALL(attr->FIELD); \ 648 #define TEST_AND_CALL1_SEL(FIELD, CALL, SEL) do { \ 650 _mesa_##CALL(SEL, attr->FIELD); \ 653 #define TEST_AND_CALL2(FIELD1, FIELD2, CALL) do { \ 655 _mesa_##CALL(attr->FIELD1, attr->FIELD2); \
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | PixelProgram.hpp | 114 void CALL(int labelIndex, int callSiteIndex);
|
H A D | VertexProgram.hpp | 92 void CALL(int labelIndex, int callSiteIndex);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/ |
H A D | MSP430ISelLowering.h | 41 /// CALL - These operations represent an abstract call 43 CALL,
|