HomeSort by relevance Sort by last modified time
    Searched refs:var_type (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/rs/
spec.l 7 %x var_type
90 BEGIN(var_type);
97 BEGIN(var_type);
100 <var_type>"const" {
104 <var_type>"i8" {
110 <var_type>"i16" {
116 <var_type>"i32" {
122 <var_type>"i64" {
128 <var_type>"u8" {
134 <var_type>"u16"
    [all...]
  /art/test/712-varhandle-invocations/util-src/
generate_java.py 99 def types_that_widen_to(var_type):
100 types_that_widen = { var_type }
102 if var_type in WIDENING_CONVERSIONS[src_type]:
149 "${var_type} field = ${initial_value}"
151 'MethodHandles.lookup().findVarHandle(${test_class}.class, "field", ${var_type}.class)',
164 "${var_type} field = ${initial_value}"
166 'MethodHandles.lookup().findVarHandle(${test_class}.class, "field", ${var_type}.class)',
179 "static ${var_type} field = ${initial_value}"
181 'MethodHandles.lookup().findStaticVarHandle(${test_class}.class, "field", ${var_type}.class)',
192 "static ${var_type} field = ${initial_value}
    [all...]
  /external/google-benchmark/test/
output_test.h 151 #define _CHECK_RESULT_VALUE(entry, getfn, var_type, var_name, relationship, value) \
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) \
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/libcxx/utils/google-benchmark/test/
output_test.h 151 #define _CHECK_RESULT_VALUE(entry, getfn, var_type, var_name, relationship, value) \
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) \
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/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.h 43 var_type(intelligibility::VarianceArray::kStepDecaying),
52 intelligibility::VarianceArray::StepType var_type; member in struct:webrtc::IntelligibilityEnhancer::Config
intelligibility_enhancer.cc 85 config.var_type,
89 config.var_type,
intelligibility_enhancer_unittest.cc 97 config_.var_type = step_type;
  /external/tensorflow/tensorflow/contrib/training/python/training/
hparam.py 46 def _parse_fail(name, var_type, value, values):
50 (name, var_type.__name__, value, values))
59 def _process_scalar_value(name, parse_fn, var_type, m_dict, values,
71 var_type: Type of named variable.
85 _parse_fail(name, var_type, m_dict['val'], values)
108 def _process_list_value(name, parse_fn, var_type, m_dict, values,
120 var_type: Type of named variable.
139 _parse_fail(name, var_type, m_dict['vals'], values)
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/test/
intelligibility_proc.cc 112 config.var_type = static_cast<VarianceArray::StepType>(FLAGS_clear_type);
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.h 470 static bool CheckValueCount(const std::string& var_type,
478 static bool CheckValueMult(const std::string& var_type,
shader_program.cpp 608 bool ShaderProgram::CheckValueCount(const std::string& var_type,
616 var_type.c_str(), var_name.c_str(),
624 bool ShaderProgram::CheckValueMult(const std::string& var_type,
630 "but %d elements were passed!", var_type.c_str(), var_name.c_str(),
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmGraphicsShaderTestUtil.cpp 1051 const string var_type = data_type.str(); local
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp 565 cvPreprocessVarType( const CvMat* var_type, const CvMat* var_idx,
582 if( !CV_IS_MAT(var_type) )
583 CV_ERROR( var_type ? CV_StsBadArg : CV_StsNullPtr, "Invalid or absent var_type array" );
585 if( var_type->rows != 1 && var_type->cols != 1 )
586 CV_ERROR( CV_StsBadSize, "var_type array must be 1-dimensional" );
588 if( !CV_IS_MASK_ARR(var_type))
591 tm_size = var_type->rows + var_type->cols - 1
    [all...]
mltree.cpp 49 var_idx = var_type = cat_count = cat_ofs = cat_map =
63 var_idx = var_type = cat_count = cat_ofs = cat_map =
155 cvNorm( data->var_type, var_type, CV_C ) < FLT_EPSILON &&
235 CV_CALL( var_type = cvCreateMat( 1, var_count+2, CV_32SC1 ));
245 var_type->data.i[vi] = var_type0->data.ptr[vi] == CV_VAR_CATEGORICAL ?
251 // set the two last elements of var_type array to be able
254 var_type->data.i[var_count] = cat_var_count;
255 var_type->data.i[var_count+1] = cat_var_count+1;
919 cvReleaseMat( &var_type );
    [all...]
  /art/runtime/mirror/
var_handle_test.cc 47 Handle<Class> var_type = hs.NewHandle(art_field->ResolveType()); variable
50 InitializeVarHandle(fvh.Get(), var_type, access_modes_bit_mask);
54 var_type,
74 Handle<Class> var_type = hs.NewHandle(array_class->GetComponentType()); variable
76 InitializeVarHandle(vh.Get(), var_type, array_class, index_type, access_modes_bit_mask);
92 Handle<Class> var_type = hs.NewHandle(view_array_class->GetComponentType()); variable
96 InitializeVarHandle(bvh.Get(), var_type, byte_array_class, index_type, access_modes_bit_mask);
112 Handle<Class> var_type = hs.NewHandle(view_array_class->GetComponentType()); variable
117 InitializeVarHandle(bvh.Get(), var_type, byte_buffer_class, index_type, access_modes_bit_mask);
154 Handle<Class> var_type,
    [all...]
var_handle.cc     [all...]
  /external/mesa3d/src/compiler/glsl/tests/lower_jumps/
create_test_cases.py 131 def declare_temp(var_type, var_name):
134 (declare (temporary) <var_type> <var_name)
136 return [['declare', ['temporary'], var_type, var_name]]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
opts.h 112 enum cl_var_type var_type; member in struct:cl_option
  /external/v8/src/asmjs/
asm-wasm-builder.cc 659 ValueType var_type = TypeOf(expr); local
660 DCHECK_NE(kWasmStmt, var_type);
663 kExprGetGlobal, LookupOrInsertGlobal(var, var_type));
666 LookupOrInsertLocal(var, var_type));
953 ValueType var_type = TypeOf(expr); local
    [all...]
  /external/deqp/external/openglcts/modules/gles31/
es31cArrayOfArraysTests.hpp 709 std::string recursively_initialise(std::string var_type, size_t dimension_index, std::string init_string);
958 std::string recursively_initialise(std::string var_type, size_t dimension_index, std::string init_string);
1077 std::string recursively_initialise(std::string var_type, size_t dimension_index, std::string init_string);
    [all...]
es31cArrayOfArraysTests.cpp     [all...]
  /test/vts/compilation_tools/vtsc/code_gen/driver/
HalHidlCodeGen.cpp 223 string var_type = GetCppVariableType(arg); local
230 out << var_type << " " << cur_arg_name << " = nullptr;\n";
232 out << var_type << " " << cur_arg_name << " = 0;\n";
234 out << var_type << " " << cur_arg_name << ";\n";
    [all...]
  /external/tpm2/generator/
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/google-breakpad/src/testing/scripts/generator/cpp/
ast.py 252 def __init__(self, start, end, name, var_type, initial_value, namespace):
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)
    [all...]
  /external/googletest/googlemock/scripts/generator/cpp/
ast.py 253 def __init__(self, start, end, name, var_type, initial_value, namespace):
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)
    [all...]

Completed in 659 milliseconds

1 2