/external/google-benchmark/test/ |
D | output_test.h | 151 #define _CHECK_RESULT_VALUE(entry, getfn, var_type, var_name, relationship, value) \ argument 153 (entry.getfn< var_type >(var_name), (value)) << "\n" \ 156 << "expected (" << #var_type << ")" << (var_name) \ 157 << "=" << (entry).getfn< var_type >(var_name) \ 162 #define _CHECK_FLOAT_RESULT_VALUE(entry, getfn, var_type, var_name, relationship, value, eps_factor… argument 164 (entry.getfn< var_type >(var_name), (value), (eps_factor) * (value)) << "\n" \ 167 << "expected (" << #var_type << ")" << (var_name) \ 168 << "=" << (entry).getfn< var_type >(var_name) \ 173 << "but delta was " << ((entry).getfn< var_type >(var_name) - (value)) \ 174 << " (" << (((entry).getfn< var_type >(var_name) - (value)) \ [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmGraphicsShaderTestUtil.cpp | 1046 const string var_type = data_type.str(); in passthruInterface() local 1048 const string functype = string("%") + var_type + "_" + var_type + "_function"; in passthruInterface() 1051 string("%interface_op_func = OpFunction %") + var_type + " None " + functype + "\n" in passthruInterface() 1052 " %io_param1 = OpFunctionParameter %" + var_type + "\n" in passthruInterface() 1056 fragments["input_type"] = var_type; in passthruInterface() 1057 fragments["output_type"] = var_type; in passthruInterface() 1080 …fragments["pre_main"] += "%" + var_type + " = OpTypeVector %" + IFDataType(1, data_type.elementTyp… in passthruInterface() 1084 "%ip_" + var_type + " = OpTypePointer Input %" + var_type + "\n" in passthruInterface() 1085 "%op_" + var_type + " = OpTypePointer Output %" + var_type + "\n"; in passthruInterface() 1089 functype + " = OpTypeFunction %" + var_type + " %" + var_type + "\n" in passthruInterface() [all …]
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/ |
D | intelligibility_enhancer.h | 43 var_type(intelligibility::VarianceArray::kStepDecaying), in Config() 52 intelligibility::VarianceArray::StepType var_type; member
|
D | intelligibility_enhancer.cc | 85 config.var_type, in IntelligibilityEnhancer() 89 config.var_type, in IntelligibilityEnhancer()
|
D | intelligibility_enhancer_unittest.cc | 97 config_.var_type = step_type; in CheckUpdate()
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/test/ |
D | intelligibility_proc.cc | 112 config.var_type = static_cast<VarianceArray::StepType>(FLAGS_clear_type); in void_main()
|
/external/tpm2/generator/ |
D | tpm_table.py | 630 var_type = '_'.join([type_prefix, alg_base, type_suffix]).strip('_') 632 var_type = type_prefix 636 expansion.append(Field(var_type, alg_base.lower(),
|
/external/mesa3d/src/compiler/glsl/tests/lower_jumps/ |
D | create_test_cases.py | 131 def declare_temp(var_type, var_name): argument 136 return [['declare', ['temporary'], var_type, var_name]]
|
/external/v8/src/asmjs/ |
D | asm-wasm-builder.cc | 659 ValueType var_type = TypeOf(expr); in VisitVariableProxy() local 660 DCHECK_NE(kWasmStmt, var_type); in VisitVariableProxy() 663 kExprGetGlobal, LookupOrInsertGlobal(var, var_type)); in VisitVariableProxy() 666 LookupOrInsertLocal(var, var_type)); in VisitVariableProxy() 953 ValueType var_type = TypeOf(expr); in EmitAssignment() local 954 DCHECK_NE(kWasmStmt, var_type); in EmitAssignment() 956 uint32_t index = LookupOrInsertGlobal(var, var_type); in EmitAssignment() 964 LookupOrInsertLocal(var, var_type)); in EmitAssignment() 967 LookupOrInsertLocal(var, var_type)); in EmitAssignment()
|
/external/libxml2/result/ |
D | intsubset2.xml.sax | 103 The type of cross-reference is given in the var_type attribute. 105 SAX.attributeDecl(variant, var_type, 1, 2, NULL, ...) 107 The var_type attribute indicates the type of variant code. The current
|
D | intsubset2.xml.sax2 | 103 The type of cross-reference is given in the var_type attribute. 105 SAX.attributeDecl(variant, var_type, 1, 2, NULL, ...) 107 The var_type attribute indicates the type of variant code. The current
|
/external/libxml2/result/noent/ |
D | intsubset2.xml.sax2 | 103 The type of cross-reference is given in the var_type attribute. 105 SAX.attributeDecl(variant, var_type, 1, 2, NULL, ...) 107 The var_type attribute indicates the type of variant code. The current
|
/external/googletest/googlemock/scripts/generator/cpp/ |
D | ast.py | 253 def __init__(self, start, end, name, var_type, initial_value, namespace): argument 255 self.type = var_type 732 var_type = Type(pos_token.start, pos_token.end, type_name, 736 name, var_type, value, self.namespace_stack)
|
/external/v8/testing/gmock/scripts/generator/cpp/ |
D | ast.py | 253 def __init__(self, start, end, name, var_type, initial_value, namespace): argument 255 self.type = var_type 732 var_type = Type(pos_token.start, pos_token.end, type_name, 736 name, var_type, value, self.namespace_stack)
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
D | ast.py | 252 def __init__(self, start, end, name, var_type, initial_value, namespace): argument 254 self.type = var_type 731 var_type = Type(pos_token.start, pos_token.end, type_name, 735 name, var_type, value, self.namespace_stack)
|
/external/mesa3d/src/compiler/glsl/ |
D | ast_to_hir.cpp | 2902 const struct glsl_type *var_type, in validate_interpolation_qualifier() argument 3012 && var_type->contains_integer() in validate_interpolation_qualifier() 3038 && var_type->contains_double() in validate_interpolation_qualifier() 3049 const struct glsl_type *var_type, in interpret_interpolation_qualifier() argument 3077 qual, var_type, mode); in interpret_interpolation_qualifier() 4713 const struct glsl_type *var_type; in hir() local 4747 var_type = process_array_type(&loc, decl_type, decl->array_specifier, in hir() 4750 var = new(ctx) ir_variable(var_type, identifier, ir_var_auto); in hir() 5150 if (var_type->contains_opaque() && in hir() 5185 validate_array_dimensions(var_type, state, &loc); in hir()
|
/external/v8/src/builtins/ |
D | builtins-array.cc | 2326 Variable var_type(&assembler, MachineRepresentation::kWord32); in Generate_ArrayPrototypeIterationMethod() local 2334 var_type.Bind(assembler.LoadMapInstanceType(var_map.value())); in Generate_ArrayPrototypeIterationMethod() 2335 assembler.Branch(assembler.IsJSReceiverInstanceType(var_type.value()), in Generate_ArrayPrototypeIterationMethod() 2344 var_type.Bind(assembler.LoadMapInstanceType(var_map.value())); in Generate_ArrayPrototypeIterationMethod() 2351 var_type.value(), context, kIterationKind)); in Generate_ArrayPrototypeIterationMethod()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 816 const clang::QualType& var_type, in Use() argument 819 if (IsRawPointerType(var_type)) { in Use()
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 1853 >>> var_type = collections.namedtuple('variable', 1857 >>> var_type._fields 1860 >>> var = var_type(1, 'frequency', 'int', 4)
|