OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JType
(Results
1 - 12
of
12
) sorted by null
/frameworks/native/opengl/tools/glgen/src/
JType.java
19
public class
JType
{
26
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"));
32
typeMapping.put(new CType("GLboolean"), new
JType
("boolean"));
33
typeMapping.put(new CType("GLclampf"), new
JType
("float"));
34
typeMapping.put(new CType("GLclampx"), new
JType
("int"));
35
typeMapping.put(new CType("GLenum"), new
JType
("int"))
[
all
...]
JFunc.java
25
JType
ftype;
29
List<
JType
> argTypes = new ArrayList<
JType
>();
52
public void setType(
JType
ftype) {
56
public
JType
getType() {
80
public void addArgument(String argName,
JType
argType, int cindex) {
113
public
JType
getArgType(int index) {
125
jfunc.setType(
JType
.convert(cfunc.getType(), false));
140
jfunc.addArgument(cArgName,
JType
.convert(cArgType, useArray), i);
143
jfunc.addArgument(cArgName + "Offset", new
JType
("int"), i)
[
all
...]
JniCodeEmitter.java
37
public static String getJniName(
JType
jType
) {
39
if (
jType
.isEGLHandle()) {
40
return (
jType
.isArray() ? "[" : "" ) + "Landroid/opengl/" +
jType
.getBaseType() + ";";
41
} else if (
jType
.isClass()) {
42
return "L" +
jType
.getBaseType() + ";";
43
} else if (
jType
.isArray()) {
47
String baseType =
jType
.getBaseType();
173
JType
argType = jfunc.getArgType(i)
[
all
...]
/art/compiler/llvm/
backend_types.h
27
enum
JType
{
62
inline
JType
GetJTypeFromShorty(char shorty_jty) {
md_builder.h
50
::llvm::MDNode* GetTBAAMemoryJType(TBAASpecialType special_ty,
JType
j_ty);
ir_builder.h
124
::llvm::LoadInst* CreateLoad(::llvm::Value* ptr, TBAASpecialType special_ty,
JType
j_ty) {
129
TBAASpecialType special_ty,
JType
j_ty) {
152
TBAASpecialType special_ty,
JType
j_ty) {
159
TBAASpecialType special_ty,
JType
j_ty) {
313
::llvm::Type* getJType(
JType
jty);
426
::llvm::Constant* getJZero(
JType
jty) {
ir_builder.cc
72
::llvm::Type* IRBuilder::getJType(
JType
jty) {
md_builder.cc
71
::llvm::MDNode* MDBuilder::GetTBAAMemoryJType(TBAASpecialType sty_id,
JType
jty_id) {
76
DCHECK_GE(jty_id, 0) << "Unknown
JType
: " << jty_id;
77
DCHECK_LT(jty_id, MAX_JTYPE) << "Unknown
JType
: " << jty_id;
107
LOG(FATAL) << "Unknown
JType
: " << jty_id;
gbc_expander.cc
49
using ::art::llvm::
JType
;
192
llvm::Value* SignOrZeroExtendCat1Types(llvm::Value* value,
JType
jty);
194
// Truncate category 1 types from 32bits to the given
JType
size.
195
llvm::Value* TruncateCat1Types(llvm::Value* value,
JType
jty);
224
JType
elem_jty);
257
JType
elem_jty);
262
JType
elem_jty);
269
JType
field_jty);
275
JType
field_jty);
280
JType
field_jty)
[
all
...]
/system/core/libpixelflinger/codeflinger/
mips_opcode.h
61
}
JType
;
93
}
JType
;
mips_disassem.c
193
switch (i.
JType
.op) {
460
db_printf("%s\t", op_name[i.
JType
.op]);
461
print_addr((loc & 0xF0000000) | (i.
JType
.target << 2));
/external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp
[
all
...]
Completed in 247 milliseconds