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

1 2 3

  /external/nanopb-c/
pb.h 385 #define PB_REQUIRED_STATIC(tag, st, m, fd, ltype, ptr) \
386 {tag, PB_ATYPE_STATIC | PB_HTYPE_REQUIRED | ltype, \
390 #define PB_OPTIONAL_STATIC(tag, st, m, fd, ltype, ptr) \
391 {tag, PB_ATYPE_STATIC | PB_HTYPE_OPTIONAL | ltype, \
397 #define PB_REPEATED_STATIC(tag, st, m, fd, ltype, ptr) \
398 {tag, PB_ATYPE_STATIC | PB_HTYPE_REPEATED | ltype, \
405 #define PB_REQUIRED_POINTER(tag, st, m, fd, ltype, ptr) \
406 {tag, PB_ATYPE_POINTER | PB_HTYPE_REQUIRED | ltype, \
410 #define PB_OPTIONAL_POINTER(tag, st, m, fd, ltype, ptr) \
411 {tag, PB_ATYPE_POINTER | PB_HTYPE_OPTIONAL | ltype, \
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
swigobject.swg 7 %typemap(in,noblock=1) SWIG_Object const & ($*ltype temp)
9 temp = %static_cast($input, $*ltype);
void.swg 15 %typemap(in,noblock=1) void * const& ($*ltype temp = 0, int res) {
69 $result = %reinterpret_cast(argp, $ltype);
77 static $*ltype temp = %reinterpret_cast(argp, $*ltype);
swigtype.swg 10 $1 = %reinterpret_cast(argp, $ltype);
19 $1 = %reinterpret_cast(argp, $ltype);
27 %argument_fail(res, "$*ltype", $symname, $argnum);
29 temp = %reinterpret_cast(argp, $*ltype);
42 $1 = %reinterpret_cast(argp, $ltype);
53 $1 = %reinterpret_cast(argp, $ltype);
66 $1 = %reinterpret_cast(argp, $ltype);
80 $&ltype temp = %reinterpret_cast(argp, $&ltype);
94 $1 = *(%reinterpret_cast(argp, $&ltype));
    [all...]
valtypes.swg 37 %argument_fail(ecode, "$ltype", $symname, $argnum);
39 $1 = %static_cast(val,$ltype);
42 %typemap(in,noblock=1,fragment=frag) const Type & ($*ltype temp, Type val, int ecode = 0) {
45 %argument_fail(ecode, "$*ltype", $symname, $argnum);
47 temp = %static_cast(val, $*ltype);
73 $1 = %static_cast(val,$ltype);
  /system/core/debuggerd/
utility.cpp 49 bool is_allowed_in_logcat(enum logtype ltype) {
50 if ((ltype == ERROR)
51 || (ltype == HEADER)
52 || (ltype == REGISTERS)
53 || (ltype == BACKTRACE)) {
59 void _LOG(log_t* log, enum logtype ltype, const char* fmt, ...) {
61 bool write_to_logcat = is_allowed_in_logcat(ltype)
utility.h 71 void _LOG(log_t* log, logtype ltype, const char *fmt, ...)
  /external/stlport/src/c_locale_win32/
c_locale_win32.c 268 _Locale_lcid_t* _Locale_get_ctype_hint(_Locale_ctype_t* ltype)
269 { return (ltype != 0) ? &ltype->lc : 0; }
314 _Locale_ctype_t *ltype = (_Locale_ctype_t*)malloc(sizeof(_Locale_ctype_t)); local
316 if (!ltype) { *__err_code = _STLP_LOC_NO_MEMORY; return ltype; }
317 memset(ltype, 0, sizeof(_Locale_ctype_t));
319 if (__GetLCIDFromName(name, &ltype->lc.id, cp_name, lc_hint) == -1)
320 { free(ltype); *__err_code = _STLP_LOC_UNKNOWN_NAME; return NULL; }
323 if ( ltype->lc.id == INVARIANT_LCID && name[0] == 'C' && name[1] == 0
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_locale_win32.c 268 _Locale_lcid_t* _Locale_get_ctype_hint(_Locale_ctype_t* ltype)
269 { return (ltype != 0) ? &ltype->lc : 0; }
314 _Locale_ctype_t *ltype = (_Locale_ctype_t*)malloc(sizeof(_Locale_ctype_t)); local
316 if (!ltype) { *__err_code = _STLP_LOC_NO_MEMORY; return ltype; }
317 memset(ltype, 0, sizeof(_Locale_ctype_t));
319 if (__GetLCIDFromName(name, &ltype->lc.id, cp_name, lc_hint) == -1)
320 { free(ltype); *__err_code = _STLP_LOC_UNKNOWN_NAME; return NULL; }
323 if ( ltype->lc.id == INVARIANT_LCID && name[0] == 'C' && name[1] == 0
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
typemaps.i 19 $1 = ($ltype)caml_ptr_val($input,$descriptor);
34 $1 = ($ltype) caml_ptr_val($input,$1_descriptor);
39 $1 = *(($ltype) caml_ptr_val($input,$1_descriptor));
76 $&1_ltype temp = new $ltype((const $1_ltype &) $1);
104 void *temp = calloc(1,sizeof($ltype));
203 $1 = ($ltype)caml_ptr_val($input,$1_descriptor);
224 $1 = ($ltype)caml_string_val($input);
260 $1 = ($ltype)caml_ptr_val($input,$1_descriptor);
  /prebuilts/misc/common/swig/include/2.0.11/lua/
typemaps.i 49 %typemap(in,checkfn="lua_isnumber") TYPE *INPUT($*ltype temp), TYPE &INPUT($*ltype temp)
50 %{ temp = ($*ltype)lua_tonumber(L,$input);
52 %typemap(in, numinputs=0) TYPE *OUTPUT ($*ltype temp)
62 // const version (the $*ltype is the basic number without ptr or const's)
63 %typemap(in,checkfn="lua_isnumber") const TYPE *INPUT($*ltype temp)
64 %{ temp = ($*ltype)lua_tonumber(L,$input);
364 %{ $1 = ($ltype)SWIG_get_int_num_array_fixed(L,$input,$1_dim0);
372 %{ $1 = ($ltype)SWIG_get_int_num_array_var(L,$input,&$2);
496 %{ $1 = ($ltype)SWIG_get_ptr_array_fixed(L,$input,$1_dim0,$*1_descriptor)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/octave/
boost_shared_ptr.i 177 if (argp) $1 = *(%reinterpret_cast(argp, $&ltype));
178 if (newmem & SWIG_CAST_NEW_MEMORY) delete %reinterpret_cast(argp, $&ltype);
192 $1 = argp ? *(%reinterpret_cast(argp, $&ltype)) : SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE >();
193 if (newmem & SWIG_CAST_NEW_MEMORY) delete %reinterpret_cast(argp, $&ltype);
208 if (argp) tempshared = *%reinterpret_cast(argp, $ltype);
209 delete %reinterpret_cast(argp, $ltype);
212 $1 = (argp) ? %reinterpret_cast(argp, $ltype) : &tempshared;
235 if (argp) tempshared = *%reinterpret_cast(argp, $ltype);
236 delete %reinterpret_cast(argp, $ltype);
239 $1 = (argp) ? %reinterpret_cast(argp, $ltype) : &tempshared
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
boost_shared_ptr.i 190 if (argp) $1 = *(%reinterpret_cast(argp, $&ltype));
191 if (newmem & SWIG_CAST_NEW_MEMORY) delete %reinterpret_cast(argp, $&ltype);
205 $1 = argp ? *(%reinterpret_cast(argp, $&ltype)) : SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE >();
206 if (newmem & SWIG_CAST_NEW_MEMORY) delete %reinterpret_cast(argp, $&ltype);
221 if (argp) tempshared = *%reinterpret_cast(argp, $ltype);
222 delete %reinterpret_cast(argp, $ltype);
225 $1 = (argp) ? %reinterpret_cast(argp, $ltype) : &tempshared;
248 if (argp) tempshared = *%reinterpret_cast(argp, $ltype);
249 delete %reinterpret_cast(argp, $ltype);
252 $1 = (argp) ? %reinterpret_cast(argp, $ltype) : &tempshared
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/r/
boost_shared_ptr.i 177 if (argp) $1 = *(%reinterpret_cast(argp, $&ltype));
178 if (newmem & SWIG_CAST_NEW_MEMORY) delete %reinterpret_cast(argp, $&ltype);
192 $1 = argp ? *(%reinterpret_cast(argp, $&ltype)) : SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE >();
193 if (newmem & SWIG_CAST_NEW_MEMORY) delete %reinterpret_cast(argp, $&ltype);
208 if (argp) tempshared = *%reinterpret_cast(argp, $ltype);
209 delete %reinterpret_cast(argp, $ltype);
212 $1 = (argp) ? %reinterpret_cast(argp, $ltype) : &tempshared;
235 if (argp) tempshared = *%reinterpret_cast(argp, $ltype);
236 delete %reinterpret_cast(argp, $ltype);
239 $1 = (argp) ? %reinterpret_cast(argp, $ltype) : &tempshared
    [all...]
  /development/ndk/platforms/android-9/arch-x86/include/asm/
uaccess_32.h 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
uaccess_32.h 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
uaccess_32.h 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
uaccess_32.h 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
uaccess_32.h 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
uaccess_32.h 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
uaccess_32.h 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
uaccess_32.h 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/9/platforms/android-12/arch-x86/usr/include/asm/
uaccess_32.h 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/9/platforms/android-13/arch-x86/usr/include/asm/
uaccess_32.h 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/asm/
uaccess_32.h 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err))
70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))

Completed in 358 milliseconds

1 2 3