HomeSort by relevance Sort by last modified time
    Searched full:var_type (Results 1 - 25 of 29) 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...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/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...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/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...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/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/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/lldb/source/Core/
ValueObjectVariable.cpp 60 Type *var_type = m_variable_sp->GetType(); local
61 if (var_type)
62 return var_type->GetClangForwardType();
69 Type * var_type = m_variable_sp->GetType(); local
70 if (var_type)
71 return var_type->GetName();
78 Type * var_type = m_variable_sp->GetType(); local
79 if (var_type)
80 return var_type->GetQualifiedName();
  /external/qemu/android/
cmdline-option.c 28 int var_type; member in struct:__anon32776
155 if (oo->var_type != OPTION_IS_FLAG) {
164 if (oo->var_type == OPTION_IS_PARAM)
168 else if (oo->var_type == OPTION_IS_LIST)
214 if ( oo->var_type == OPTION_IS_LIST ) {
  /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/chromium_org/gpu/command_buffer/service/
shader_translator.cc 42 void GetVariableInfo(ShHandle compiler, ShShaderInfo var_type,
45 switch (var_type) {
63 ShGetInfo(compiler, var_type, &num_vars);
71 ShGetVariableInfo(compiler, var_type, i,
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 507 def __init__(self, var_type, set_condition):
508 self.var_type = var_type
512 return self.var_type
523 return self.var_type + "&"
529 def __init__(self, var_type):
530 self.var_type = var_type
533 return self.var_type
544 return self.var_type + "*
    [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...]
mlrtrees.cpp 126 int ci = data->var_type->data.i[vi];
  /external/lldb/source/Expression/
ClangExpressionDeclMap.cpp 1403 Type *var_type = var->GetType(); local
1683 QualType var_type = var_decl->getType(); local
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.cpp 615 bool ShaderProgram::CheckValueCount(const std::string& var_type,
623 var_type.c_str(), var_name.c_str(),
631 bool ShaderProgram::CheckValueMult(const std::string& var_type,
637 "but %d elements were passed!", var_type.c_str(), var_name.c_str(),
    [all...]
shader_program.h 470 static bool CheckValueCount(const std::string& var_type,
478 static bool CheckValueMult(const std::string& var_type,
  /external/chromium_org/ppapi/proxy/
raw_var_data.cc 197 PP_VarType var_type = static_cast<PP_VarType>(type);
198 result->data_.push_back(RawVarData::Create(var_type));
199 if (!result->data_.back()->Read(var_type, m, iter))
  /external/chromium_org/third_party/mesa/src/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/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]]
  /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/chromium_org/v8/tools/gcmole/
gcmole.cc 802 const clang::QualType& var_type,
805 if (IsRawPointerType(var_type)) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ast_to_hir.cpp 2572 const struct glsl_type *var_type; local
    [all...]
  /external/mesa3d/src/glsl/
ast_to_hir.cpp 2572 const struct glsl_type *var_type; local
    [all...]
  /external/lldb/include/lldb/Symbol/
ClangASTType.h 465 const ClangASTType &var_type,

Completed in 1472 milliseconds

1 2