HomeSort by relevance Sort by last modified time
    Searched full:var_type (Results 1 - 25 of 43) 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...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderIndexingTests.cpp 274 vtx << "layout(location = 0) out ${PRECISION} ${VAR_TYPE} var[${ARRAY_LEN}];\n";
281 vtx << " var[0] = ${VAR_TYPE}(a_coords);\n";
282 vtx << " var[1] = ${VAR_TYPE}(a_coords) * 0.5;\n";
283 vtx << " var[2] = ${VAR_TYPE}(a_coords) * 0.25;\n";
284 vtx << " var[3] = ${VAR_TYPE}(a_coords) * 0.125;\n";
288 vtx << " var[ui_zero] = ${VAR_TYPE}(a_coords);\n";
289 vtx << " var[ui_one] = ${VAR_TYPE}(a_coords) * 0.5;\n";
290 vtx << " var[ui_two] = ${VAR_TYPE}(a_coords) * 0.25;\n";
291 vtx << " var[ui_three] = ${VAR_TYPE}(a_coords) * 0.125;\n";
295 vtx << " ${PRECISION} ${VAR_TYPE} coords = ${VAR_TYPE}(a_coords);\n"
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderIndexingTests.cpp 260 vtx << "varying ${PRECISION} ${VAR_TYPE} var[${ARRAY_LEN}];\n";
267 vtx << " var[0] = ${VAR_TYPE}(a_coords);\n";
268 vtx << " var[1] = ${VAR_TYPE}(a_coords) * 0.5;\n";
269 vtx << " var[2] = ${VAR_TYPE}(a_coords) * 0.25;\n";
270 vtx << " var[3] = ${VAR_TYPE}(a_coords) * 0.125;\n";
274 vtx << " var[ui_zero] = ${VAR_TYPE}(a_coords);\n";
275 vtx << " var[ui_one] = ${VAR_TYPE}(a_coords) * 0.5;\n";
276 vtx << " var[ui_two] = ${VAR_TYPE}(a_coords) * 0.25;\n";
277 vtx << " var[ui_three] = ${VAR_TYPE}(a_coords) * 0.125;\n";
281 vtx << " ${PRECISION} ${VAR_TYPE} coords = ${VAR_TYPE}(a_coords);\n"
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderIndexingTests.cpp 231 vtx << "out ${PRECISION} ${VAR_TYPE} var[${ARRAY_LEN}];\n";
238 vtx << " var[0] = ${VAR_TYPE}(a_coords);\n";
239 vtx << " var[1] = ${VAR_TYPE}(a_coords) * 0.5;\n";
240 vtx << " var[2] = ${VAR_TYPE}(a_coords) * 0.25;\n";
241 vtx << " var[3] = ${VAR_TYPE}(a_coords) * 0.125;\n";
245 vtx << " var[ui_zero] = ${VAR_TYPE}(a_coords);\n";
246 vtx << " var[ui_one] = ${VAR_TYPE}(a_coords) * 0.5;\n";
247 vtx << " var[ui_two] = ${VAR_TYPE}(a_coords) * 0.25;\n";
248 vtx << " var[ui_three] = ${VAR_TYPE}(a_coords) * 0.125;\n";
252 vtx << " ${PRECISION} ${VAR_TYPE} coords = ${VAR_TYPE}(a_coords);\n"
    [all...]
  /external/ceres-solver/cmake/
UpdateCacheVariable.cmake 41 GET_PROPERTY(VAR_TYPE CACHE ${VAR_NAME} PROPERTY TYPE)
42 SET(${VAR_NAME} ${VALUE} CACHE ${VAR_TYPE} "${HELP_STRING}" FORCE)
  /external/opencv3/samples/cpp/
letter_recog.cpp 105 Mat var_type( nvars + 1, 1, CV_8U );
106 var_type.setTo(Scalar::all(VAR_ORDERED));
107 var_type.at<uchar>(nvars) = VAR_CATEGORICAL;
110 noArray(), sample_idx, noArray(), var_type);
276 Mat var_type( 1, var_count + 2, CV_8U );
277 var_type.setTo(Scalar::all(VAR_ORDERED));
278 var_type.at<uchar>(var_count) = var_type.at<uchar>(var_count+1) = VAR_CATEGORICAL;
281 noArray(), noArray(), noArray(), var_type);
  /external/opencv3/apps/traincascade/
old_ml_inner_functions.cpp 496 cvPreprocessVarType( const CvMat* var_type, const CvMat* var_idx,
512 if( !CV_IS_MAT(var_type) )
513 CV_ERROR( var_type ? CV_StsBadArg : CV_StsNullPtr, "Invalid or absent var_type array" );
515 if( var_type->rows != 1 && var_type->cols != 1 )
516 CV_ERROR( CV_StsBadSize, "var_type array must be 1-dimensional" );
518 if( !CV_IS_MASK_ARR(var_type))
521 tm_size = var_type->rows + var_type->cols - 1
    [all...]
old_ml_tree.cpp 52 var_idx = var_type = cat_count = cat_ofs = cat_map =
67 var_idx = var_type = cat_count = cat_ofs = cat_map =
183 cvNorm( data->var_type, var_type, CV_C ) < FLT_EPSILON &&
275 CV_CALL( var_type = cvCreateMat( 1, var_count+2, CV_32SC1 ));
286 var_type->data.i[vi] = vt == CV_VAR_CATEGORICAL ? cat_var_count++ : ord_var_count--;
291 // set the two last elements of var_type array to be able
294 var_type->data.i[var_count] = cat_var_count;
295 var_type->data.i[var_count+1] = cat_var_count+1;
    [all...]
boost.cpp 521 var_type = cvCreateMat( 1, var_count + 2, CV_32SC1 );
529 var_type->data.i[vi] = vi;
538 var_type->data.i[vi-1] = -vi;
541 var_type->data.i[var_count] = cat_var_count;
542 var_type->data.i[var_count+1] = cat_var_count+1;
607 var_type = cvCreateMat( 1, var_count + 2, CV_32SC1 );
616 var_type->data.i[vi] = vi;
625 var_type->data.i[vi-1] = -vi;
628 var_type->data.i[var_count] = cat_var_count;
629 var_type->data.i[var_count+1] = cat_var_count+1
    [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;
  /system/tpm/trunks/generator/
generator.py     [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...]
  /external/libxml2/result/
intsubset2.xml 89 The type of cross-reference is given in the var_type attribute.
90 --><!ATTLIST variant var_type CDATA #REQUIRED>
92 The var_type attribute indicates the type of variant code. The current
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
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/
intsubset2.xml 89 The type of cross-reference is given in the var_type attribute.
90 --><!ATTLIST variant var_type CDATA #REQUIRED>
92 The var_type attribute indicates the type of variant code. The current
  /external/libxml2/test/
intsubset2.xml 102 The type of cross-reference is given in the var_type attribute.
104 <!ATTLIST variant var_type CDATA #REQUIRED>
106 The var_type attribute indicates the type of variant code. The current
  /external/v8/src/wasm/
asm-wasm-builder.cc 561 LocalType var_type = TypeOf(expr); variable
562 DCHECK_NE(kAstStmt, var_type);
565 kExprLoadGlobal, LookupOrInsertGlobal(var, var_type));
568 LookupOrInsertLocal(var, var_type));
795 LocalType var_type = TypeOf(expr); local
796 DCHECK_NE(kAstStmt, var_type);
799 kExprStoreGlobal, LookupOrInsertGlobal(var, var_type));
802 LookupOrInsertLocal(var, var_type));
    [all...]
  /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.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/mesa3d/src/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]]
  /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(),

Completed in 1059 milliseconds

1 2