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

1 2 3 4 5 6 7

  /external/deqp/framework/randomshaders/
rsgToken.cpp 32 : m_type(IDENTIFIER)
41 if (m_type == IDENTIFIER)
47 if (m_type == IDENTIFIER)
53 m_type = other.m_type;
55 if (m_type == IDENTIFIER)
61 else if (m_type == FLOAT_LITERAL)
63 else if (m_type == INT_LITERAL)
65 else if (m_type == BOOL_LITERAL)
72 : m_type(TYPE_LAST
    [all...]
rsgVariableType.hpp 67 : m_type(DE_NULL)
73 : m_type(new VariableType(type))
80 delete m_type;
84 : m_type(DE_NULL)
87 if (other.m_type)
88 m_type = new VariableType(*other.m_type);
96 delete m_type;
98 m_type = DE_NULL;
101 if (other.m_type)
127 VariableType* m_type; member in class:rsg::VariableType::Member
    [all...]
rsgToken.hpp 137 inline bool operator== (Type type) const { return m_type == type; }
138 inline bool operator!= (Type type) const { return m_type != type; }
145 inline Type getType (void) const { return m_type; }
153 Type m_type; member in class:rsg::Token
165 : m_type(TYPE_LAST)
171 : m_type(type)
177 : m_type(FLOAT_LITERAL)
183 : m_type(INT_LITERAL)
189 : m_type(BOOL_LITERAL)
201 DE_ASSERT(m_type == IDENTIFIER)
    [all...]
rsgVariableValue.hpp 77 StridedValueRead (const VariableType& type, const Scalar* value) : m_type(type), m_value(value) {}
79 const VariableType& getType (void) const { return m_type; }
83 const VariableType& m_type; member in class:rsg::StridedValueRead
91 ConstStridedValueAccess (void) : m_type(DE_NULL), m_value(DE_NULL) {}
92 ConstStridedValueAccess (const VariableType& type, const Scalar* valuePtr) : m_type(&type), m_value(const_cast<Scalar*>(valuePtr)) {}
94 const VariableType& getType (void) const { return *m_type; }
118 const VariableType* m_type; member in class:rsg::ConstStridedValueAccess
200 ConstValueRangeAccess (void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {}
201 ConstValueRangeAccess (const VariableType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(const_cast<Scalar*>(minVal)), m_max(const_cast<Scalar*>(maxVal)) {}
203 const VariableType& getType (void) const { return *m_type; }
218 const VariableType* m_type; member in class:rsg::ConstValueRangeAccess
304 VariableType m_type; member in class:rsg::ValueRange
    [all...]
rsgVariable.hpp 57 const VariableType& getType (void) const { return m_type; }
71 VariableType m_type; member in class:rsg::Variable
  /external/strace/
mpers.sh 46 for m_type; do
47 f_h="${BITS_DIR}/${m_type}.h"
48 f_c="${BITS_DIR}/${m_type}.c"
49 f_i="${BITS_DIR}/${m_type}.i"
50 f_o="${BITS_DIR}/${m_type}.o"
51 f_d1="${BITS_DIR}/${m_type}.d1"
52 f_d2="${BITS_DIR}/${m_type}.d2"
54 /DEF_MPERS_TYPE('"${m_type}"')$/n
57 /^#[[:space:]]*include[[:space:]]\+MPERS_DEFS$/ {s//'"${m_type} ${VAR_NAME}"';/;q}
60 grep -F -q "${m_type}.h" "${f_i}" |
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
NetworkAuthenticationTypeElement.java 28 private final NwkAuthTypeEnum m_type; field in class:NetworkAuthenticationTypeElement.NetworkAuthentication
32 m_type = type;
37 return m_type;
47 "m_type=" + m_type +
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTexture.hpp 40 ImageType type (void) const { return m_type; } //!< Texture type
50 const ImageType m_type; member in class:vkt::image::Texture
vktImageTexture.cpp 33 , m_type (type_)
82 switch (m_type)
106 switch (m_type)
130 switch (m_type)
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinitionUtil.hpp 45 VariablePathComponent (void) :m_type(TYPE_LAST) { }
46 VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; }
47 VariablePathComponent (const glu::InterfaceBlock* block) :m_type(TYPE_INTERFACEBLOCK) { m_data.block = block; }
48 VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.declaration = decl; }
50 VariablePathComponent (const VariablePathComponent& other) : m_data(other.m_data), m_type(other.m_type) { }
51 VariablePathComponent& operator= (const VariablePathComponent& other) { m_type = other.m_type; m_data = other.m_data; return *this; }
53 bool isVariableType (void) const { return m_type == TYPE_TYPE; }
54 bool isInterfaceBlock (void) const { return m_type == TYPE_INTERFACEBLOCK;
80 Type m_type; member in class:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
    [all...]
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_fmparse.cpp 37 while (m_pToken->m_type == TOKreserver) {
45 if (m_pToken->m_type != op) {
64 if (m_pToken->m_type == TOKeof) {
67 if (m_pToken->m_type == TOKendfunc) {
70 if (m_pToken->m_type == TOKendif) {
73 if (m_pToken->m_type == TOKelseif) {
76 if (m_pToken->m_type == TOKelse) {
79 if (m_pToken->m_type == TOKfunc) {
104 if (m_pToken->m_type != TOKidentifier) {
113 if (m_pToken->m_type == TOKrparen) {
    [all...]
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 158 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon10527::SingleVertexArrayStrideGroup
163 , m_type (type)
185 const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10;
186 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
187 const int alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(m_type));
192 if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10) && componentCount != 4)
195 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type,
263 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon10527::SingleVertexArrayFirstGroup
367 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon10527::SingleVertexArrayOffsetGroup
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == 0 || p_nd->m_type == i_node)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
104 if (p_nd->m_p_parent->m_type == head_node)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type == i_node);
145 if (p_nd->m_type == i_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
160 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
177 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == leaf_node)
    [all...]
find_fn_imps.hpp 49 if (p_nd == 0 || p_nd->m_type != leaf_node)
74 if (p_nd == 0 || p_nd->m_type != leaf_node)
106 while (p_nd->m_type != leaf_node)
108 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
138 if (p_nd->m_type == leaf_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
211 if (p_nd->m_type == leaf_node)
214 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
223 if (p_nd->m_type == leaf_node)
226 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == 0 || p_nd->m_type == i_node)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
104 if (p_nd->m_p_parent->m_type == head_node)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type == i_node);
145 if (p_nd->m_type == i_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
160 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
177 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == leaf_node)
    [all...]
find_fn_imps.hpp 49 if (p_nd == 0 || p_nd->m_type != leaf_node)
74 if (p_nd == 0 || p_nd->m_type != leaf_node)
106 while (p_nd->m_type != leaf_node)
108 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
138 if (p_nd->m_type == leaf_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
211 if (p_nd->m_type == leaf_node)
214 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
223 if (p_nd->m_type == leaf_node)
226 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == 0 || p_nd->m_type == i_node)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
104 if (p_nd->m_p_parent->m_type == head_node)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type == i_node);
145 if (p_nd->m_type == i_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
160 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
177 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == leaf_node)
    [all...]
find_fn_imps.hpp 49 if (p_nd == 0 || p_nd->m_type != leaf_node)
74 if (p_nd == 0 || p_nd->m_type != leaf_node)
106 while (p_nd->m_type != leaf_node)
108 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
138 if (p_nd->m_type == leaf_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
211 if (p_nd->m_type == leaf_node)
214 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
223 if (p_nd->m_type == leaf_node)
226 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == 0 || p_nd->m_type == i_node)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
104 if (p_nd->m_p_parent->m_type == head_node)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type == i_node);
145 if (p_nd->m_type == i_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
160 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
177 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == leaf_node)
    [all...]
find_fn_imps.hpp 49 if (p_nd == 0 || p_nd->m_type != leaf_node)
74 if (p_nd == 0 || p_nd->m_type != leaf_node)
106 while (p_nd->m_type != leaf_node)
108 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
138 if (p_nd->m_type == leaf_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
211 if (p_nd->m_type == leaf_node)
214 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
223 if (p_nd->m_type == leaf_node)
226 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexArrayTest.cpp 155 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayStrideGroup
160 , m_type (type)
182 const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10;
183 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
184 const int alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(m_type));
189 if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10) && componentCount != 4)
192 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type,
260 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayFirstGroup
364 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayOffsetGroup
464 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayNormalizeGroup
556 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayOutputTypeGroup
    [all...]
  /external/libavc/encoder/
ih264e_rc_mem_interface.h 51 #define FILL_MEMTAB(m_pv_mem_rec, m_j, m_mem_size, m_align, m_type) \
56 m_pv_mem_rec[m_j].e_mem_type = m_type; \
irc_mem_req_and_acq.h 51 #define FILL_MEMTAB(m_pv_mem_rec, m_j, m_mem_size, m_align, m_type) \
56 m_pv_mem_rec[m_j].e_mem_type = m_type; \
  /external/deqp/framework/opengl/
gluVarTypeUtil.hpp 142 bool isValid (void) const { return isValidTypePath(m_type, m_path); }
143 VarType getType (void) const { return getVarType(m_type, m_path); }
148 bool operator== (const SubTypeAccess& other) const { return m_path == other.m_path && m_type == other.m_type; }
149 bool operator!= (const SubTypeAccess& other) const { return m_path != other.m_path || m_type != other.m_type; }
152 VarType m_type; member in class:glu::SubTypeAccess
166 bool operator== (const SubTypeIterator<IsExpanded>& other) const { return m_type == other.m_type && m_path == other.m_path; }
167 bool operator!= (const SubTypeIterator<IsExpanded>& other) const { return m_type != other.m_type || m_path != other.m_path;
184 const VarType* m_type; member in class:glu::SubTypeIterator
    [all...]
gluVarType.cpp 32 : m_type(TYPE_LAST)
37 : m_type(TYPE_LAST)
43 : m_type(TYPE_BASIC)
50 : m_type(TYPE_ARRAY)
58 : m_type(TYPE_STRUCT)
65 if (m_type == TYPE_ARRAY)
74 if (m_type == TYPE_ARRAY)
77 m_type = other.m_type;
80 if (m_type == TYPE_ARRAY
    [all...]

Completed in 1844 milliseconds

1 2 3 4 5 6 7