Home
last modified time | relevance | path

Searched refs:rtype (Results 1 – 25 of 58) sorted by relevance

123

/external/chromium_org/third_party/libxml/src/
Dgentest.py402 def is_known_param_type(name, rtype): argument
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/libffi/src/m32r/
Dffi.c47 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT && ecif->cif->rtype->size > 8) in ffi_prep_args()
143 switch (cif->rtype->type) in ffi_prep_cif_machdep()
146 cif->flags = (unsigned) cif->rtype->type; in ffi_prep_cif_machdep()
150 if (cif->rtype->size <= 4) in ffi_prep_cif_machdep()
153 else if (cif->rtype->size <= 8) in ffi_prep_cif_machdep()
157 cif->flags = (unsigned) cif->rtype->type; in ffi_prep_cif_machdep()
188 (cif->rtype->type == FFI_TYPE_STRUCT)) in ffi_call()
190 ecif.rvalue = alloca (cif->rtype->size); in ffi_call()
200 if (cif->rtype->type == FFI_TYPE_STRUCT) in ffi_call()
202 int size = cif->rtype->size; in ffi_call()
[all …]
/external/libffi/src/
Dprep_cif.c89 ffi_type *rtype, ffi_type **atypes) in ffi_prep_cif() argument
101 cif->rtype = rtype; in ffi_prep_cif()
106 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK)) in ffi_prep_cif()
110 FFI_ASSERT_VALID_TYPE(cif->rtype); in ffi_prep_cif()
115 if (cif->rtype->type == FFI_TYPE_STRUCT in ffi_prep_cif()
117 && (cif->abi != FFI_V9 || cif->rtype->size > 32) in ffi_prep_cif()
120 && (cif->rtype->size > 8) in ffi_prep_cif()
/external/libffi/src/sh64/
Dffi.c71 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT) in ffi_prep_args()
166 greg = (return_type (cif->rtype) == FFI_TYPE_STRUCT ? 1 : 0); in ffi_prep_cif_machdep()
215 switch (cif->rtype->type) in ffi_prep_cif_machdep()
218 cif->flags = return_type (cif->rtype); in ffi_prep_cif_machdep()
226 cif->flags = cif->rtype->type; in ffi_prep_cif_machdep()
261 if (cif->rtype->type == FFI_TYPE_STRUCT in ffi_call()
262 && return_type (cif->rtype) != FFI_TYPE_STRUCT) in ffi_call()
265 (cif->rtype->type == FFI_TYPE_STRUCT)) in ffi_call()
268 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
288 && cif->rtype->type == FFI_TYPE_STRUCT in ffi_call()
[all …]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dpush.h56 template <class Arc, ReweightType rtype>
61 Push(ofst, rtype); in Push()
63 const StringType stype = rtype == REWEIGHT_TO_INITIAL in Push()
70 ShortestDistance(gfst, &gdistance, rtype == REWEIGHT_TO_INITIAL); in Push()
76 ShortestDistance(guwfst, &gdistance, rtype == REWEIGHT_TO_INITIAL); in Push()
78 Reweight(&gfst, gdistance, rtype); in Push()
/external/libffi/src/cris/
Dffi.c159 ffi_type * rtype, ffi_type ** atypes) in ffi_prep_cif() argument
171 cif->rtype = rtype; in ffi_prep_cif()
175 if ((cif->rtype->size == 0) in ffi_prep_cif()
176 && (initialize_aggregate_packed_struct (cif->rtype) != FFI_OK)) in ffi_prep_cif()
179 FFI_ASSERT_VALID_TYPE (cif->rtype); in ffi_prep_cif()
218 switch (cif->rtype->type) in ffi_prep_cif_machdep()
226 cif->flags = (unsigned) cif->rtype->type; in ffi_prep_cif_machdep()
250 if ((rvalue == NULL) && (cif->rtype->type == FFI_TYPE_STRUCT)) in ffi_call()
252 ecif.rvalue = alloca (cif->rtype->size); in ffi_call()
345 cif->rtype->type == FFI_TYPE_STRUCT in ffi_prep_closure_inner()
/external/libffi/src/sparc/
Dffi.c149 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT && in ffi_prep_args_v9()
150 ecif->cif->rtype->size > 32) in ffi_prep_args_v9()
262 if (cif->rtype->type != FFI_TYPE_STRUCT) in ffi_prep_cif_machdep()
293 switch (cif->rtype->type) in ffi_prep_cif_machdep()
301 cif->flags = cif->rtype->type; in ffi_prep_cif_machdep()
305 if (cif->abi == FFI_V9 && cif->rtype->size > 32) in ffi_prep_cif_machdep()
380 if (cif->rtype->type == FFI_TYPE_STRUCT) in ffi_call()
382 if (cif->rtype->size <= 32) in ffi_call()
388 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
407 if (rvalue && rval && cif->rtype->type == FFI_TYPE_STRUCT) in ffi_call()
[all …]
/external/libffi/src/sh/
Dffi.c127 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT) in ffi_prep_args()
334 greg = ((return_type (cif->rtype) == FFI_TYPE_STRUCT) && in ffi_prep_cif_machdep()
387 switch (cif->rtype->type) in ffi_prep_cif_machdep()
390 cif->flags += (unsigned) (return_type (cif->rtype)) << 24; in ffi_prep_cif_machdep()
398 cif->flags += (unsigned) cif->rtype->type << 24; in ffi_prep_cif_machdep()
423 if (cif->rtype->type == FFI_TYPE_STRUCT in ffi_call()
424 && return_type (cif->rtype) != FFI_TYPE_STRUCT) in ffi_call()
427 (cif->rtype->type == FFI_TYPE_STRUCT)) in ffi_call()
429 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
446 && cif->rtype->type == FFI_TYPE_STRUCT in ffi_call()
[all …]
/external/openfst/src/include/fst/
Dpush.h123 template <class Arc, ReweightType rtype>
131 Push(ofst, rtype, delta, ptype & kPushRemoveTotalWeight);
133 const StringType stype = rtype == REWEIGHT_TO_INITIAL
140 ShortestDistance(gfst, &gdistance, rtype == REWEIGHT_TO_INITIAL, delta);
146 ShortestDistance(guwfst, &gdistance, rtype == REWEIGHT_TO_INITIAL, delta);
152 gfst, gdistance, rtype == REWEIGHT_TO_INITIAL);
159 Reweight(&gfst, gdistance, rtype);
161 internal::RemoveWeight(&gfst, total_weight, rtype == REWEIGHT_TO_FINAL);
/external/libffi/src/mips/
Dffi.c92 if ( ecif->cif->rtype->type == FFI_TYPE_STRUCT ) in ffi_prep_args()
299 if (cif->rtype->type != FFI_TYPE_STRUCT && cif->abi == FFI_O32) in ffi_prep_cif_machdep()
339 switch (cif->rtype->type) in ffi_prep_cif_machdep()
343 cif->flags += cif->rtype->type << (FFI_FLAG_BITS * 2); in ffi_prep_cif_machdep()
361 switch (cif->rtype->type) in ffi_prep_cif_machdep()
367 cif->flags += cif->rtype->type << (FFI_FLAG_BITS * 2); in ffi_prep_cif_machdep()
392 if (cif->rtype->type == FFI_TYPE_STRUCT) in ffi_prep_cif_machdep()
394 struct_flags = calc_n32_return_struct_flags(cif->rtype); in ffi_prep_cif_machdep()
449 switch (cif->rtype->type) in ffi_prep_cif_machdep()
475 cif->flags += cif->rtype->type << (FFI_FLAG_BITS * 8); in ffi_prep_cif_machdep()
[all …]
/external/libffi/src/m68k/
Dffi.c38 if (ecif->cif->rtype->type == FFI_TYPE_STRUCT in ffi_prep_args()
112 switch (cif->rtype->type) in ffi_prep_cif_machdep()
119 switch (cif->rtype->size) in ffi_prep_cif_machdep()
180 && cif->rtype->type == FFI_TYPE_STRUCT in ffi_call()
181 && cif->rtype->size > 8) in ffi_call()
182 ecif.rvalue = alloca (cif->rtype->size); in ffi_call()
263 if (cif->rtype->type == FFI_TYPE_STRUCT in ffi_prep_closure_loc()
/external/libffi/src/x86/
Dffi.c121 switch (cif->rtype->type) in ffi_prep_cif_machdep()
138 cif->flags = (unsigned) cif->rtype->type; in ffi_prep_cif_machdep()
147 if (cif->rtype->size == 1) in ffi_prep_cif_machdep()
151 else if (cif->rtype->size == 2) in ffi_prep_cif_machdep()
155 else if (cif->rtype->size == 4) in ffi_prep_cif_machdep()
159 else if (cif->rtype->size == 8) in ffi_prep_cif_machdep()
204 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
447 (cif->rtype->type == FFI_TYPE_STRUCT)) in ffi_raw_call()
449 ecif.rvalue = alloca(cif->rtype->size); in ffi_raw_call()
Dffi64.c284 flags = cif->rtype->type; in ffi_prep_cif_machdep()
287 n = examine_argument (cif->rtype, classes, 1, &ngpr, &nsse); in ffi_prep_cif_machdep()
308 flags |= cif->rtype->size << 12; in ffi_prep_cif_machdep()
359 ret_in_memory = (cif->rtype->type == FFI_TYPE_STRUCT in ffi_call()
362 rvalue = alloca (cif->rtype->size); in ffi_call()
481 ret = cif->rtype->type; in ffi_closure_unix64_inner()
485 int n = examine_argument (cif->rtype, classes, 1, &ngpr, &nsse); in ffi_closure_unix64_inner()
/external/libffi/src/arm/
Dffi.c119 switch (cif->rtype->type) in ffi_prep_cif_machdep()
124 cif->flags = (unsigned) cif->rtype->type; in ffi_prep_cif_machdep()
133 if (cif->rtype->size <= 4) in ffi_prep_cif_machdep()
159 && cif->rtype->type == FFI_TYPE_STRUCT); in ffi_call()
172 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
191 memcpy (rvalue, &temp, cif->rtype->size); in ffi_call()
/external/libffi/src/pa/
Dffi.c320 switch (cif->rtype->type) in ffi_prep_cif_machdep()
325 cif->flags = (unsigned) cif->rtype->type; in ffi_prep_cif_machdep()
341 cif->flags = ffi_struct_type(cif->rtype); in ffi_prep_cif_machdep()
386 && (cif->rtype->type == FFI_TYPE_STRUCT in ffi_call()
387 || cif->rtype->type == FFI_TYPE_LONGDOUBLE)) in ffi_call()
389 && cif->rtype->type == FFI_TYPE_STRUCT) in ffi_call()
392 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
570 tmp += 4 - cif->rtype->size; in ffi_closure_inner_pa32()
571 memcpy((void*)tmp, &ret[0], cif->rtype->size); in ffi_closure_inner_pa32()
/external/libffi/src/frv/
Dffi.c116 if (cif->rtype->type == FFI_TYPE_STRUCT) in ffi_prep_cif_machdep()
119 cif->flags = cif->rtype->size; in ffi_prep_cif_machdep()
146 (cif->rtype->type == FFI_TYPE_STRUCT)) in ffi_call()
148 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
226 if (cif->rtype->type == FFI_TYPE_STRUCT) in ffi_closure_eabi()
/external/smack/src/org/xbill/DNS/
DZone.java115 int rtype = record.getType(); in maybeAddRecord() local
118 if (rtype == Type.SOA && !name.equals(origin)) { in maybeAddRecord()
281 int rtype = rrset.getType(); in addRRset() local
286 if (set.getType() == rtype) { in addRRset()
294 if (set.getType() == rtype) in addRRset()
471 int rtype = r.getRRsetType(); in addRecord() local
473 RRset rrset = findRRset(name, rtype); in addRecord()
491 int rtype = r.getRRsetType(); in removeRecord() local
493 RRset rrset = findRRset(name, rtype); in removeRecord()
497 removeRRset(name, rtype); in removeRecord()
/external/chromium_org/ppapi/generators/
Didl_c_proto.py386 rtype = self.GetTypeByMode(node, release, mode)
394 if '%' in rtype:
395 rtype = rtype % rname
411 (rtype, name, arrayspec, callspec))
412 return (rtype, name, arrayspec, callspec)
415 def Compose(self, rtype, name, arrayspec, callspec, prefix, func_as_ptr, argument
417 self.LogEnter('Compose: %s %s' % (rtype, name))
430 out = '%s %s' % (rtype, name)
441 out = '%s %s(%s)' % (rtype, name, ', '.join(params))
460 rtype, name, arrayspec, callspec = self.GetComponents(node, release, mode)
[all …]
/external/openssh/
Dserverloop.c1100 char *rtype; in server_input_global_request() local
1104 rtype = packet_get_string(NULL); in server_input_global_request()
1106 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply); in server_input_global_request()
1109 if (strcmp(rtype, "tcpip-forward") == 0) { in server_input_global_request()
1140 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) { in server_input_global_request()
1152 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) { in server_input_global_request()
1164 xfree(rtype); in server_input_global_request()
1172 char *rtype; in server_input_channel_req() local
1175 rtype = packet_get_string(NULL); in server_input_channel_req()
1179 id, rtype, reply); in server_input_channel_req()
[all …]
/external/libffi/src/powerpc/
Dffi.c598 unsigned type = cif->rtype->type; in ffi_prep_cif_machdep()
599 unsigned size = cif->rtype->size; in ffi_prep_cif_machdep()
891 if ((rvalue == NULL) && (cif->rtype->type == FFI_TYPE_STRUCT)) in ffi_call()
893 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
1016 size = cif->rtype->size; in ffi_closure_helper_SYSV()
1026 if ((cif->rtype->type == FFI_TYPE_STRUCT in ffi_closure_helper_SYSV()
1029 || (cif->rtype->type == FFI_TYPE_LONGDOUBLE in ffi_closure_helper_SYSV()
1253 if (cif->abi == FFI_SYSV && cif->rtype->type == FFI_TYPE_STRUCT in ffi_closure_helper_SYSV()
1257 else if (cif->rtype->type == FFI_TYPE_LONGDOUBLE in ffi_closure_helper_SYSV()
1265 switch (cif->rtype->type) in ffi_closure_helper_SYSV()
[all …]
/external/javassist/src/main/javassist/compiler/
DJavac.java162 CtClass rtype = gen.resolver.lookupClass(r); in compileMethod() local
163 recordReturnType(rtype, false); in compileMethod()
164 CtMethod method = new CtMethod(rtype, r.getVariable().get(), in compileMethod()
197 CtClass rtype; in compileBody() local
200 rtype = ((CtMethod)method).getReturnType(); in compileBody()
203 rtype = CtClass.voidType; in compileBody()
205 recordReturnType(rtype, false); in compileBody()
206 boolean isVoid = rtype == CtClass.voidType; in compileBody()
209 makeDefaultBody(bytecode, rtype); in compileBody()
/external/libffi/src/alpha/
Dffi.c56 switch (cif->rtype->type) in ffi_prep_cif_machdep()
61 cif->flags = cif->rtype->type; in ffi_prep_cif_machdep()
88 rvalue = alloca(cif->rtype->size); in ffi_call()
283 return cif->rtype->type; in ffi_closure_osf_inner()
/external/javassist/src/main/javassist/
DCtBehavior.java777 CtClass rtype = getReturnType0(); in insertAfter() local
778 int varNo = jv.recordReturnType(rtype, true); in insertAfter()
782 int handlerLen = insertAfterHandler(asFinally, b, rtype, varNo, in insertAfter()
785 insertAfterAdvice(b, jv, src, pool, rtype, varNo); in insertAfter()
827 ConstPool cp, CtClass rtype, int varNo) in insertAfterAdvice() argument
830 if (rtype == CtClass.voidType) { in insertAfterAdvice()
839 code.addStore(varNo, rtype); in insertAfterAdvice()
841 code.addLoad(varNo, rtype); in insertAfterAdvice()
842 if (rtype.isPrimitive()) in insertAfterAdvice()
843 code.addOpcode(((CtPrimitiveType)rtype).getReturnOp()); in insertAfterAdvice()
[all …]
/external/kernel-headers/original/asm-x86/
Duaccess_32.h333 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) \ argument
335 "1: mov"itype" %"rtype"1,%2\n" \
372 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) \ argument
374 "1: mov"itype" %2,%"rtype"1\n" \
378 " xor"itype" %"rtype"1,%"rtype"1\n" \
/external/libffi/src/ia64/
Dffi.c236 flags = cif->rtype->type; in ffi_prep_cif_machdep()
237 switch (cif->rtype->type) in ffi_prep_cif_machdep()
248 size_t size = cif->rtype->size; in ffi_prep_cif_machdep()
249 int hfa_type = hfa_element_type (cif->rtype, 0); in ffi_prep_cif_machdep()
285 if (rvalue == NULL && cif->rtype->type != FFI_TYPE_VOID) in ffi_call()
286 rvalue = alloca (cif->rtype->size); in ffi_call()

123