Home
last modified time | relevance | path

Searched refs:argtype (Results 1 – 24 of 24) sorted by relevance

/external/bcc/src/cc/frontends/p4/compiler/
DebpfAction.py16 def __init__(self, name, argtype): argument
18 self.argtype = argtype
71 argtype = ebpfScalarType.EbpfScalarType(p4action, width,
73 actionData = EbpfActionData(param, argtype)
90 argtype = arg.argtype
91 assert isinstance(argtype, ebpfType.EbpfType)
92 argtype.declare(serializer, arg.name, False)
352 self.width = caller.arguments[argument.idx].argtype.widthInBits()
/external/arm-optimized-routines/math/test/
Dmathtest.c68 } argtype; member
117 int is_double_argtype(int argtype) { in is_double_argtype() argument
118 switch(argtype) { in is_double_argtype()
129 int is_single_argtype(int argtype) { in is_single_argtype() argument
130 switch(argtype) { in is_single_argtype()
163 int is_complex_argtype(int argtype) { in is_complex_argtype() argument
164 switch(argtype) { in is_complex_argtype()
715 int argtype=2, rettype=2; /* for do_op */ in parsetest() local
765 if(is_single_argtype(ret.func->argtype)) in parsetest()
766 argtype = 0; in parsetest()
[all …]
/external/llvm-project/libc/AOR_v20.02/math/test/
Dmathtest.c69 } argtype; member
118 int is_double_argtype(int argtype) { in is_double_argtype() argument
119 switch(argtype) { in is_double_argtype()
130 int is_single_argtype(int argtype) { in is_single_argtype() argument
131 switch(argtype) { in is_single_argtype()
164 int is_complex_argtype(int argtype) { in is_complex_argtype() argument
165 switch(argtype) { in is_complex_argtype()
716 int argtype=2, rettype=2; /* for do_op */ in parsetest() local
766 if(is_single_argtype(ret.func->argtype)) in parsetest()
767 argtype = 0; in parsetest()
[all …]
/external/rust/crates/tinyvec_macros/src/
Dlib.rs12 …$v:vis fn $fname:ident ($seif:ident : $seifty:ty $(,$argname:ident : $argtype:ty)*) $(-> $ret:ty)?…
18 $v fn $fname($seif : $seifty, $($argname: $argtype),*) $(-> $ret)? {
/external/tinyalsa_new/utils/
Doptparse.h73 enum optparse_argtype argtype; member
292 for (a = 0; a < (int)longopts[i].argtype; a++) in optparse_from_long()
385 if (longopts[i].argtype == OPTPARSE_NONE && arg != 0) { in optparse_long()
389 } else if (longopts[i].argtype == OPTPARSE_REQUIRED) { in optparse_long()
/external/grpc-grpc/src/ruby/qps/
Dworker.rb44 case req.argtype.to_s
62 case req.argtype.to_s
Dproxy-worker.rb117 case req.argtype.to_s
/external/rust/crates/grpcio-sys/grpc/third_party/upb/third_party/lunit/
Dlunit.lua168 local argtype = type(arg)
169 if argtype == "string" then
171 elseif argtype == "number" or argtype == "boolean" or argtype == "nil" then
/external/grpc-grpc/test/core/util/
Dcmdline.cc30 typedef enum { ARGTYPE_INT, ARGTYPE_BOOL, ARGTYPE_STRING } argtype; typedef
35 argtype type;
81 argtype type, void* value) { in add_arg()
/external/rust/crates/grpcio-sys/grpc/test/core/util/
Dcmdline.cc36 typedef enum { ARGTYPE_INT, ARGTYPE_BOOL, ARGTYPE_STRING } argtype; typedef
41 argtype type;
87 argtype type, void* value) { in add_arg()
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DServerArgs.php16 protected $argtype; variable in Grpc\\Testing\\ServerArgs
DClientArgs.php16 protected $argtype; variable in Grpc\\Testing\\ClientArgs
/external/python/cpython2/Parser/
Dasdl_c.py294 for argtype, argname, opt in args:
296 if not opt and not (argtype == "bool" or argtype == "int"):
320 for argtype, argname, opt in args:
322 for argtype, argname, opt in attrs:
328 for argtype, argname, opt in args:
/external/python/cpython3/Parser/
Dasdl_c.py327 for argtype, argname, opt in args:
328 if not opt and argtype != "int":
352 for argtype, argname, opt in args:
354 for argtype, argname, opt in attrs:
360 for argtype, argname, opt in args:
362 for argtype, argname, opt in attrs:
/external/grpc-grpc/src/proto/grpc/testing/
Dcontrol.proto129 oneof argtype { oneof
167 oneof argtype { oneof
/external/grpc-grpc-java/benchmarks/src/main/proto/grpc/testing/
Dcontrol.proto120 oneof argtype { oneof
154 oneof argtype { oneof
/external/bcc/src/python/bcc/
Dlibbcc.py121 lib.bpf_attach_perf_event.argtype = [ct.c_int, ct.c_uint, ct.c_uint, ct.c_ulonglong, ct.c_ulonglong,
125 lib.bpf_close_perf_event_fd.argtype = [ct.c_int]
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/
Dcontrol.proto134 oneof argtype { oneof
175 oneof argtype { oneof
/external/tensorflow/tensorflow/python/framework/
Dfunction.py962 for (argname, argtype, argshape) in zip(arg_names, arg_types, arg_shapes):
963 argholder = array_ops.placeholder(argtype, shape=argshape, name=argname)
/external/scapy/scapy/modules/
Dwinpcapy.py658 pcap_setmintocopy.argtype = [POINTER(pcap_t), c_int]
/external/llvm-project/clang/include/clang/Basic/
Darm_mve.td1224 class ScalarShift<Type argtype, dag shiftCountArg, dag shiftCodeGen>:
1225 Intrinsic<argtype, !con((args argtype:$value), shiftCountArg), shiftCodeGen> {
1233 class LongScalarShift<Type argtype, dag shiftCountArg, dag shiftCodeGen>:
1234 ScalarShift<argtype, shiftCountArg,
1235 (seq (u32 (lshr $value, (argtype 32))):$hi,
/external/python/cffi/c/
D_cffi_backend.c3021 CTypeDescrObject *argtype; in cdata_call() local
3028 argtype = (CTypeDescrObject *)PyTuple_GET_ITEM(signature, 2 + i); in cdata_call()
3030 argtype = (CTypeDescrObject *)PyTuple_GET_ITEM(fvarargs, i); in cdata_call()
3032 if (argtype->ct_flags & CT_POINTER) { in cdata_call()
3035 argtype, obj, (char **)data); in cdata_call()
3044 if (convert_array_from_object(tmpbuf, argtype, obj) < 0) in cdata_call()
3048 else if (convert_from_object(data, argtype, obj) < 0) in cdata_call()
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst2029 Passing 'None' if ctypes argtype is set to POINTER(...) does now always
/external/python/cpython3/Misc/
DHISTORY14032 - Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...) does now