Home
last modified time | relevance | path

Searched refs:CType (Results 1 – 8 of 8) sorted by relevance

/frameworks/native/opengl/tools/glgen/src/
DJType.java26 static HashMap<CType,JType> typeMapping = new HashMap<CType,JType>();
27 static HashMap<CType,JType> arrayTypeMapping = new HashMap<CType,JType>();
31 typeMapping.put(new CType("GLbitfield"), new JType("int")); in typeMapping.put()
32 typeMapping.put(new CType("GLboolean"), new JType("boolean")); in typeMapping.put()
33 typeMapping.put(new CType("GLclampf"), new JType("float")); in typeMapping.put()
34 typeMapping.put(new CType("GLclampx"), new JType("int")); in typeMapping.put()
35 typeMapping.put(new CType("GLenum"), new JType("int")); in typeMapping.put()
36 typeMapping.put(new CType("GLfloat"), new JType("float")); in typeMapping.put()
37 typeMapping.put(new CType("GLfixed"), new JType("int")); in typeMapping.put()
38 typeMapping.put(new CType("GLint"), new JType("int")); in typeMapping.put()
[all …]
DCFunc.java23 CType ftype;
27 List<CType> argTypes = new ArrayList<CType>();
49 public void setType(CType ftype) { in setType()
53 public CType getType() { in getType()
57 public void addArgument(String argName, CType argType) { in addArgument()
90 public CType getArgType(int index) { in getArgType()
123 CType ftype = new CType(); in parseCFunc()
153 CType argType = new CType(); in parseCFunc()
DCType.java17 public class CType { class
23 public CType() { in CType() method in CType
26 public CType(String baseType) { in CType() method in CType
30 public CType(String baseType, boolean isConst, boolean isPointer) { in CType() method in CType
112 if (o != null && o instanceof CType) { in equals()
113 CType c = (CType)o; in equals()
DJFunc.java130 CType cArgType = cfunc.getArgType(i); in convert()
138 CType cArgType = cfunc.getArgType(i); in convert()
DJniCodeEmitter.java346 CType returnType = cfunc.getType(); in getErrorReturnValue()
978 CType returnType = cfunc.getType(); in emitJniCode()
1103 CType type = cfunc.getArgType(jfunc.getArgCIndex(idx)); in emitJniCode()
1140 CType type = cfunc.getArgType(jfunc.getArgCIndex(idx)); in emitJniCode()
1194 CType type = cfunc.getArgType(jfunc.getArgCIndex(idx)); in emitJniCode()
/frameworks/av/media/utils/tests/
Dextended_accumulator_tests.cpp33 template <typename TType, typename CType>
34 static constexpr CType getBase() { in getBase()
35 static_assert(sizeof(TType) < sizeof(CType)); in getBase()
36 if constexpr (std::is_unsigned_v<CType>) { in getBase()
48 template <typename TestUInt, typename CType>
50 using TestDetect = ExtendedAccumulator<TestUInt, CType>; in testPair()
54 static_assert(sizeof(TestUInt) < sizeof(CType)); in testPair()
58 static constexpr CType base = getBase<TestUInt, CType>(); in testPair()
59 const CType prev = base + prevVal; in testPair()
63 CType next; in testPair()
[all …]
/frameworks/native/libs/binder/rust/rpcbinder/src/server/
Dandroid.rs26 type CType = binder_rpc_unstable_bindgen::ARpcServer;
/frameworks/native/libs/binder/rust/rpcbinder/src/
Dsession.rs26 type CType = binder_rpc_unstable_bindgen::ARpcSession;