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

1 2 3 4 5 6 7 8 9

  /toolchain/binutils/binutils-2.25/bfd/
elfxx-ia64.c 197 ia64_elf_lookup_howto (unsigned int rtype)
211 if (rtype > R_IA64_MAX_RELOC_CODE)
213 i = elf_code_to_howto_index[rtype];
223 unsigned int rtype; local
227 case BFD_RELOC_NONE: rtype = R_IA64_NONE; break;
229 case BFD_RELOC_IA64_IMM14: rtype = R_IA64_IMM14; break;
230 case BFD_RELOC_IA64_IMM22: rtype = R_IA64_IMM22; break;
231 case BFD_RELOC_IA64_IMM64: rtype = R_IA64_IMM64; break;
233 case BFD_RELOC_IA64_DIR32MSB: rtype = R_IA64_DIR32MSB; break;
234 case BFD_RELOC_IA64_DIR32LSB: rtype = R_IA64_DIR32LSB; break
    [all...]
elfxx-ia64.h 26 reloc_howto_type *ia64_elf_lookup_howto (unsigned int rtype);
  /toolchain/binutils/binutils-2.25/include/elf/
reloc-macros.h 77 static const char *foo (unsigned long rtype);
79 foo (unsigned long rtype)
81 switch (rtype)
100 static const char *name (unsigned long rtype); \
102 name (unsigned long rtype) \
104 switch (rtype) \
  /external/python/cpython2/Modules/_ctypes/libffi/src/
prep_cif.c 111 ffi_type *rtype, ffi_type **atypes)
127 cif->rtype = rtype;
136 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
140 FFI_ASSERT_VALID_TYPE(cif->rtype);
145 if (cif->rtype->type == FFI_TYPE_STRUCT
147 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
150 && (cif->rtype->size > 10 * FFI_SIZEOF_ARG)
153 && (cif->rtype->size > 16
    [all...]
  /device/generic/goldfish-opengl/system/egl/
ClientAPIExts.cpp 34 #define API_ENTRY_RET(rtype,fname,params,args) \
35 typedef rtype (GL_APIENTRY *FUNC_TYPE(fname)) params; // NOLINT
50 #define API_ENTRY_RET(rtype,fname,params,args) \
71 #define API_ENTRY_RET(rtype,fname,params,args) \
107 #define API_ENTRY_RET(rtype,fname,params,args) \
108 static rtype _egl_ ## fname params \
112 return (rtype)0; \
116 return (rtype)0; \
131 #define API_ENTRY_RET(rtype,fname,params,args) \
  /external/python/cpython2/Modules/_ctypes/libffi_msvc/
prep_cif.c 89 /*@dependent@*/ /*@out@*/ /*@partial@*/ ffi_type *rtype,
102 cif->rtype = rtype;
108 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
113 FFI_ASSERT_VALID_TYPE(cif->rtype);
118 if (cif->rtype->type == FFI_TYPE_STRUCT
120 && (cif->rtype->size > 8) /* MSVC returns small structs in registers */
123 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
ffi.c 49 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT)
133 switch (cif->rtype->type)
140 cif->flags = (unsigned) cif->rtype->type;
147 if (cif->rtype->size <= 4)
149 else if (cif->rtype->size <= 8)
203 (cif->rtype->type == FFI_TYPE_STRUCT))
206 ecif.rvalue = alloca(cif->rtype->size);
257 unsigned short rtype; local
274 rtype = cif->flags;
278 /* now, do a generic return based on the value of rtype */
    [all...]
  /libcore/ojluni/src/main/java/java/lang/invoke/
MethodType.java 91 private static final long serialVersionUID = 292L; // {rtype, {ptype...}}
93 // The rtype and ptypes fields define the structural identity of the method type:
94 private final Class<?> rtype; field in class:MethodType
108 private MethodType(Class<?> rtype, Class<?>[] ptypes, boolean trusted) {
109 checkRtype(rtype);
111 this.rtype = rtype;
121 private MethodType(Class<?>[] ptypes, Class<?> rtype) {
122 this.rtype = rtype;
127 \/*trusted*\/ \/** @hide *\/ public Class<?> rtype() { return rtype; } method in class:MethodType
1014 Class<?> rtype = types.remove(types.size() - 1); local
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/m32r/
ffi.c 47 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT && ecif->cif->rtype->size > 8)
143 switch (cif->rtype->type)
146 cif->flags = (unsigned) cif->rtype->type;
150 if (cif->rtype->size <= 4)
153 else if (cif->rtype->size <= 8)
157 cif->flags = (unsigned) cif->rtype->type;
188 (cif->rtype->type == FFI_TYPE_STRUCT))
190 ecif.rvalue = alloca (cif->rtype->size);
200 if (cif->rtype->type == FFI_TYPE_STRUCT
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/vax/
ffi.c 61 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT
125 switch (cif->rtype->type)
132 if (cif->rtype->elements[0]->type == FFI_TYPE_STRUCT &&
133 cif->rtype->elements[1])
139 if (cif->rtype->size == sizeof (char))
141 else if (cif->rtype->size == sizeof (short))
143 else if (cif->rtype->size == sizeof (int))
145 else if (cif->rtype->size == 2 * sizeof (int))
152 if (cif->rtype->size <= sizeof (int))
174 && cif->rtype->type == FFI_TYPE_STRUC
    [all...]
  /libcore/ojluni/src/lambda/java/java/lang/invoke/
MethodType.java 34 MethodType methodType(Class<?> rtype, Class<?>[] ptypes) {
39 MethodType methodType(Class<?> rtype, List<Class<?>> ptypes) {
44 MethodType methodType(Class<?> rtype, Class<?> ptype0, Class<?>... ptypes) { return null; }
47 MethodType methodType(Class<?> rtype) { return null; }
50 MethodType methodType(Class<?> rtype, Class<?> ptype0) { return null; }
53 MethodType methodType(Class<?> rtype, MethodType ptypes) { return null; }
  /external/python/cpython2/Modules/_ctypes/libffi_arm_wince/
prep_cif.c 89 /*@dependent@*/ /*@out@*/ /*@partial@*/ ffi_type *rtype,
102 cif->rtype = rtype;
108 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
113 FFI_ASSERT_VALID_TYPE(cif->rtype);
118 if (cif->rtype->type == FFI_TYPE_STRUCT
123 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
  /prebuilts/go/darwin-x86/src/reflect/
export_test.go 25 var ft *rtype
28 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), rcvr.(*rtype))
30 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), nil)
53 typ := (*rtype)(resolveTypeOff(unsafe.Pointer(rodata), off))
65 return bucketOf(x.(*rtype), y.(*rtype))
69 t := m.(*rtype)
95 mname := t.(*rtype).nameOff(m.name)
108 typ := t.(*rtype)
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
export_test.go 25 var ft *rtype
28 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), rcvr.(*rtype))
30 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), nil)
53 typ := (*rtype)(resolveTypeOff(unsafe.Pointer(rodata), off))
65 return bucketOf(x.(*rtype), y.(*rtype))
69 t := m.(*rtype)
95 mname := t.(*rtype).nameOff(m.name)
108 typ := t.(*rtype)
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/moxie/
ffi.c 46 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT)
109 if (cif->rtype->type == FFI_TYPE_STRUCT)
112 cif->flags = cif->rtype->size;
139 (cif->rtype->type == FFI_TYPE_STRUCT))
141 ecif.rvalue = alloca(cif->rtype->size);
189 if ((cif->rtype != NULL) && (cif->rtype->type == FFI_TYPE_STRUCT)) {
231 if (cif->rtype && (cif->rtype->type == FFI_TYPE_STRUCT))
  /external/python/cpython2/Modules/_ctypes/libffi/src/nios2/
ffi.c 88 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT
89 && ecif->cif->rtype->size > 8)
159 int bigret = (cif->rtype->type == FFI_TYPE_STRUCT
160 && cif->rtype->size > 8);
168 ecif.rvalue = alloca (cif->rtype->size);
178 switch (cif->rtype->size)
193 memcpy (rvalue, (void *)&result, cif->rtype->size);
216 if (cif->rtype->type == FFI_TYPE_STRUCT
217 && cif->rtype->size > 8)
  /external/python/cpython2/Modules/_ctypes/libffi_osx/
ffi.c 135 /*@dependent@*/ /*@out@*/ /*@partial@*/ ffi_type* rtype,
151 cif->rtype = rtype;
156 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
161 FFI_ASSERT_VALID_TYPE(cif->rtype);
166 if (cif->rtype->type == FFI_TYPE_STRUCT
168 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
171 && (struct_on_stack(cif->rtype->size))
  /external/python/cpython2/Modules/_ctypes/libffi/src/m68k/
ffi.c 49 (ecif->cif->rtype->type == FFI_TYPE_LONGDOUBLE) ||
51 (((ecif->cif->rtype->type == FFI_TYPE_STRUCT)
134 switch (cif->rtype->type)
141 if (cif->rtype->elements[0]->type == FFI_TYPE_STRUCT &&
142 cif->rtype->elements[1])
148 switch (cif->rtype->size)
233 && cif->rtype->type == FFI_TYPE_STRUCT
234 && cif->rtype->size > 8)
235 ecif.rvalue = alloca (cif->rtype->size);
270 cif->rtype->type == FFI_TYPE_STRUCT &
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/microblaze/
ffi.c 55 if ((ecif->cif->rtype != NULL) &&
56 (ecif->cif->rtype->type == FFI_TYPE_STRUCT))
159 if ((rvalue == NULL) && (cif->rtype->type == FFI_TYPE_STRUCT)) {
160 ecif.rvalue = alloca(cif->rtype->size);
169 ecif.rvalue, fn, cif->rtype->type, cif->rtype->size);
179 unsigned int* rtype, unsigned int* rsize)
210 if ((cif->rtype != NULL) && (cif->rtype->type == FFI_TYPE_STRUCT)) {
266 *rsize = cif->rtype->size
    [all...]
  /external/libxml2/
gentest.py 402 def is_known_param_type(name, rtype):
412 if rtype[0:6] == 'const ':
413 crtype = rtype[6:]
415 crtype = rtype
428 """ % (name, crtype, name, name, rtype))
686 rtype = arg.xpathEval("string(@type)")
687 if rtype == 'void':
691 type = type_convert(rtype, nam, info, module, name, n)
692 if is_known_param_type(type, rtype) == 0:
696 rtype[0:6] == 'const '
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/cris/
ffi.c 160 ffi_type * rtype, ffi_type ** atypes)
174 cif->rtype = rtype;
178 if ((cif->rtype->size == 0)
179 && (initialize_aggregate_packed_struct (cif->rtype) != FFI_OK))
182 FFI_ASSERT_VALID_TYPE (cif->rtype);
221 switch (cif->rtype->type)
229 cif->flags = (unsigned) cif->rtype->type;
253 if ((rvalue == NULL) && (cif->rtype->type == FFI_TYPE_STRUCT))
255 ecif.rvalue = alloca (cif->rtype->size)
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/xtensa/
ffi.c 57 switch(cif->rtype->type) {
62 cif->flags = cif->rtype->type;
71 cif->flags = FFI_TYPE_UINT64; // cif->rtype->type;
76 if (cif->rtype->size > 4 * 4) {
123 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT && ecif->cif->rtype->size > 16)
193 unsigned long rsize = cif->rtype->size;
264 int rtype = cif->rtype->type; local
265 if (rtype == FFI_TYPE_STRUCT && cif->rtype->size > 4 * 4
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/x86/
ffi.c 66 && (ecif->cif->rtype->size != 1 && ecif->cif->rtype->size != 2
67 && ecif->cif->rtype->size != 4 && ecif->cif->rtype->size != 8)
231 switch (cif->rtype->type)
250 cif->flags = (unsigned) cif->rtype->type;
262 if (cif->rtype->size == 1)
266 else if (cif->rtype->size == 2)
270 else if (cif->rtype->size == 4)
278 else if (cif->rtype->size == 8
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/sh64/
ffi.c 69 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT)
165 greg = (return_type (cif->rtype) == FFI_TYPE_STRUCT ? 1 : 0);
219 switch (cif->rtype->type)
222 cif->flags = return_type (cif->rtype);
230 cif->flags = cif->rtype->type;
265 if (cif->rtype->type == FFI_TYPE_STRUCT
266 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
269 (cif->rtype->type == FFI_TYPE_STRUCT))
271 ecif.rvalue = alloca(cif->rtype->size);
288 && cif->rtype->type == FFI_TYPE_STRUC
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/sparc/
ffi.c 50 if ( ecif->cif->rtype->type == FFI_TYPE_STRUCT ) */
150 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT &&
151 ecif->cif->rtype->size > 32)
263 if (cif->rtype->type != FFI_TYPE_STRUCT)
294 switch (cif->rtype->type)
302 cif->flags = cif->rtype->type;
306 if (cif->abi == FFI_V9 && cif->rtype->size > 32)
319 cif->flags = cif->rtype->type;
395 if (cif->rtype->type == FFI_TYPE_STRUCT)
397 if (cif->rtype->size <= 32
    [all...]

Completed in 1030 milliseconds

1 2 3 4 5 6 7 8 9