Home
last modified time | relevance | path

Searched refs:type_code (Results 1 – 25 of 1308) sorted by relevance

12345678910>>...53

/dports/devel/p5-FFI-Platypus/FFI-Platypus-1.56/xs/
H A DType.xs50 int type_code;
52 type_code = self->type_code;
57 type_code ^= FFI_PL_SHAPE_CUSTOM_PERL;
60 switch(type_code)
114 int type_code;
116 type_code = self->type_code;
121 type_code ^= FFI_PL_SHAPE_CUSTOM_PERL;
124 switch(type_code)
192 switch(self->type_code)
214 type_code(self)
[all …]
H A DTypeParser.xs30 create_type_basic(self, type_code)
32 int type_code
38 type->type_code |= type_code;
75 int type_code
86 type->type_code |= type_code;
113 int type_code
120 type->type_code |= FFI_PL_SHAPE_ARRAY | type_code;
129 int type_code
135 type->type_code |= FFI_PL_SHAPE_POINTER | type_code;
150 int type_code;
[all …]
H A Dnames.c7 int type_code = type->type_code; in ffi_pl_type_to_libffi_type() local
8 if((type_code & FFI_PL_SHAPE_MASK) == FFI_PL_SHAPE_CUSTOM_PERL) in ffi_pl_type_to_libffi_type()
9 type_code = type_code & ~(FFI_PL_SHAPE_MASK); in ffi_pl_type_to_libffi_type()
10 if((type_code & FFI_PL_SHAPE_MASK) == FFI_PL_SHAPE_OBJECT) in ffi_pl_type_to_libffi_type()
11 type_code = type_code & ~(FFI_PL_SHAPE_MASK); in ffi_pl_type_to_libffi_type()
12 switch(type_code) in ffi_pl_type_to_libffi_type()
54 switch(type_code & (FFI_PL_SHAPE_MASK)) in ffi_pl_type_to_libffi_type()
60 fprintf(stderr, "FFI::Platypus: internal error: type = %04x\n", type_code); in ffi_pl_type_to_libffi_type()
/dports/devel/gindent/indent-2.2.12/src/
H A Dindent.c159 codes_ty * type_code, in search_brace() argument
187 cur_token = *type_code; in search_brace()
384 if (*type_code != code_eof) in search_brace()
387 *type_code = lexi(); in search_brace()
412 (*type_code == newline || *type_code == comment) && in search_brace()
483 if (type_code != newline) in indent_main_loop()
555 if (type_code == code_eof) in indent_main_loop()
584 if ((type_code != comment) && in indent_main_loop()
586 (type_code != newline) && in indent_main_loop()
587 (type_code != preesc) && in indent_main_loop()
[all …]
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/src/target/datatype/
H A Dregistry.cc52 CHECK(type_code >= DataType::kCustomBegin) in Register()
54 code_to_name_[type_code] = type_name; in Register()
55 name_to_code_[type_name] = type_code; in Register()
64 std::string Registry::GetTypeName(uint8_t type_code) { in GetTypeName() argument
65 CHECK(code_to_name_.find(type_code) != code_to_name_.end()) in GetTypeName()
67 return code_to_name_[type_code]; in GetTypeName()
94 const runtime::PackedFunc* GetMinFunc(uint8_t type_code) { in GetMinFunc() argument
97 ss << datatype::Registry::Global()->GetTypeName(type_code); in GetMinFunc()
106 ss << datatype::Registry::Global()->GetTypeName(type_code); in GetFloatImmLowerFunc()
118 ss << datatype::Registry::Global()->GetTypeName(type_code); in GetIntrinLowerFunc()
[all …]
H A Dregistry.h68 void Register(const std::string& type_name, uint8_t type_code);
82 std::string GetTypeName(uint8_t type_code);
89 inline bool GetTypeRegistered(uint8_t type_code) { in GetTypeRegistered() argument
90 return code_to_name_.find(type_code) != code_to_name_.end(); in GetTypeRegistered()
114 uint64_t ConvertConstScalar(uint8_t type_code, double value);
121 const runtime::PackedFunc* GetMinFunc(uint8_t type_code);
130 const runtime::PackedFunc* GetCastLowerFunc(const std::string& target, uint8_t type_code,
139 const runtime::PackedFunc* GetFloatImmLowerFunc(const std::string& target, uint8_t type_code);
149 uint8_t type_code);
159 uint8_t type_code) { \
[all …]
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/source/differentiation/ad/
H A Dad_drivers.cc298 ADNumberTraits<ADNumberType>::type_code ==
310 ADNumberTraits<ADNumberType>::type_code ==
602 ADNumberTraits<ADNumberType>::type_code ==
867 ADNumberTraits<ADNumberType>::type_code ==
880 ADNumberTraits<ADNumberType>::type_code ==
1019 ADNumberTraits<ADNumberType>::type_code ==
1031 ADNumberTraits<ADNumberType>::type_code ==
1158 ADNumberTraits<ADNumberType>::type_code ==
1729 ADNumberTraits<ADNumberType>::type_code ==
1998 ADNumberTraits<ADNumberType>::type_code ==
[all …]
/dports/misc/py-tvm/incubator-tvm-0.6.1/src/codegen/datatype/
H A Dregistry.cc49 code_to_name_[type_code] = type_name; in Register()
50 name_to_code_[type_name] = type_code; in Register()
59 std::string Registry::GetTypeName(uint8_t type_code) { in GetTypeName() argument
60 CHECK(code_to_name_.find(type_code) != code_to_name_.end()) in GetTypeName()
62 return code_to_name_[type_code]; in GetTypeName()
73 if (datatype::Registry::Global()->GetTypeRegistered(type_code)) { in GetCastLowerFunc()
74 ss << datatype::Registry::Global()->GetTypeName(type_code); in GetCastLowerFunc()
76 ss << runtime::TypeCode2Str(type_code); in GetCastLowerFunc()
95 ss << datatype::Registry::Global()->GetTypeName(type_code); in GetFloatImmLowerFunc()
99 uint64_t ConvertConstScalar(uint8_t type_code, double value) { in ConvertConstScalar() argument
[all …]
/dports/misc/tvm/incubator-tvm-0.6.1/src/codegen/datatype/
H A Dregistry.cc49 code_to_name_[type_code] = type_name; in Register()
50 name_to_code_[type_name] = type_code; in Register()
59 std::string Registry::GetTypeName(uint8_t type_code) { in GetTypeName() argument
60 CHECK(code_to_name_.find(type_code) != code_to_name_.end()) in GetTypeName()
62 return code_to_name_[type_code]; in GetTypeName()
73 if (datatype::Registry::Global()->GetTypeRegistered(type_code)) { in GetCastLowerFunc()
74 ss << datatype::Registry::Global()->GetTypeName(type_code); in GetCastLowerFunc()
76 ss << runtime::TypeCode2Str(type_code); in GetCastLowerFunc()
95 ss << datatype::Registry::Global()->GetTypeName(type_code); in GetFloatImmLowerFunc()
99 uint64_t ConvertConstScalar(uint8_t type_code, double value) { in ConvertConstScalar() argument
[all …]
/dports/graphics/krita/krita-4.4.8/libs/image/3rdparty/einspline/
H A Dnubspline_structs.h30 type_code t_code;
39 type_code t_code;
49 type_code t_code;
63 type_code t_code;
73 type_code t_code;
84 type_code t_code;
98 type_code t_code;
108 type_code t_code;
119 type_code t_code;
133 type_code t_code;
[all …]
H A Dbspline_structs.h30 type_code tcode;
39 type_code tcode;
49 type_code tcode;
63 type_code tcode;
72 type_code tcode;
82 type_code tcode;
97 type_code tcode;
106 type_code tcode;
116 type_code tcode;
131 type_code tcode;
[all …]
H A Dmulti_bspline_structs.h31 type_code tcode;
42 type_code tcode;
53 type_code tcode;
68 type_code tcode;
79 type_code tcode;
90 type_code tcode;
106 type_code tcode;
117 type_code tcode;
130 type_code tcode;
147 type_code tcode;
[all …]
/dports/science/qmcpack/qmcpack-3.11.0/src/einspline/
H A Dnubspline_structs.h16 type_code t_code;
25 type_code t_code;
35 type_code t_code;
49 type_code t_code;
59 type_code t_code;
70 type_code t_code;
84 type_code t_code;
94 type_code t_code;
105 type_code t_code;
119 type_code t_code;
[all …]
H A Dbspline_structs.h17 type_code tcode;
26 type_code tcode;
36 type_code tcode;
51 type_code tcode;
60 type_code tcode;
70 type_code tcode;
86 type_code tcode;
95 type_code tcode;
105 type_code tcode;
120 type_code tcode;
[all …]
H A Dmulti_bspline_structs.h19 type_code tcode;
31 type_code tcode;
42 type_code tcode;
58 type_code tcode;
70 type_code tcode;
81 type_code tcode;
98 type_code tcode;
110 type_code tcode;
123 type_code tcode;
141 type_code tcode;
[all …]
/dports/devel/p5-FFI-Platypus/FFI-Platypus-1.56/t/
H A Dffi_platypus_typeparser_version1.t39 $tp->parse('sint8')->type_code,
44 $tp->parse('sint8*')->type_code,
49 $tp->parse('sint8[]')->type_code,
73 $tp->parse('string')->type_code,
141 $tp->parse('char')->type_code,
146 $tp->parse('int')->type_code,
156 $tp->parse('char*')->type_code,
161 $tp->parse('int*')->type_code,
171 $tp->parse('char[]')->type_code,
176 $tp->parse('int[]')->type_code,
[all …]
/dports/devel/elixir-smppex/smppex-2.2.9/lib/smppex/pdu/
H A Dnetwork_error_code.ex6 @type type_code :: pos_integer() type
10 @spec encode(type_code, error_code) :: network_error_code
20 def encode(type_code, error_code) when type_code < 256 and error_code < 65_536 do
21 <<type_code::size(8), error_code::size(16)>>
24 @spec decode(network_error_code) :: {type_code, error_code}
27 Converts octet_string from network_error_code tag to type_code and error_value
35 def decode(<<type_code::size(8), error_code::size(16)>>) do
36 {type_code, error_code}
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/gnu/java/lang/reflect/
H A DTypeSignature.java155 public static Class getClassForEncoding(String type_code, boolean descriptor) in getClassForEncoding() argument
158 return getClassForEncoding(type_code, descriptor, null); in getClassForEncoding()
178 public static Class getClassForEncoding(String type_code, boolean descriptor, in getClassForEncoding() argument
184 switch (type_code.charAt(0)) in getClassForEncoding()
206 + type_code); in getClassForEncoding()
208 type_code = type_code.substring(1, type_code.length() - 1); in getClassForEncoding()
213 return Class.forName(type_code.replace('/', '.'), true, loader); in getClassForEncoding()
224 public static Class getClassForEncoding(String type_code) in getClassForEncoding() argument
227 return getClassForEncoding(type_code, true); in getClassForEncoding()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/gnu/java/lang/reflect/
H A DTypeSignature.java155 public static Class getClassForEncoding(String type_code, boolean descriptor) in getClassForEncoding() argument
158 return getClassForEncoding(type_code, descriptor, null); in getClassForEncoding()
178 public static Class getClassForEncoding(String type_code, boolean descriptor, in getClassForEncoding() argument
184 switch (type_code.charAt(0)) in getClassForEncoding()
206 + type_code); in getClassForEncoding()
208 type_code = type_code.substring(1, type_code.length() - 1); in getClassForEncoding()
213 return Class.forName(type_code.replace('/', '.'), true, loader); in getClassForEncoding()
224 public static Class getClassForEncoding(String type_code) in getClassForEncoding() argument
227 return getClassForEncoding(type_code, true); in getClassForEncoding()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/libjava/gnu/java/lang/reflect/
H A DTypeSignature.java153 public static Class getClassForEncoding(String type_code, boolean descriptor) in getClassForEncoding() argument
156 return getClassForEncoding(type_code, descriptor, null); in getClassForEncoding()
176 public static Class getClassForEncoding(String type_code, boolean descriptor, in getClassForEncoding() argument
182 switch (type_code.charAt(0)) in getClassForEncoding()
204 + type_code); in getClassForEncoding()
206 type_code = type_code.substring(1, type_code.length() - 1); in getClassForEncoding()
211 return Class.forName(type_code.replace('/', '.'), true, loader); in getClassForEncoding()
222 public static Class getClassForEncoding(String type_code) in getClassForEncoding() argument
225 return getClassForEncoding(type_code, true); in getClassForEncoding()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/gnu/java/lang/reflect/
H A DTypeSignature.java155 public static Class getClassForEncoding(String type_code, boolean descriptor) in getClassForEncoding() argument
158 return getClassForEncoding(type_code, descriptor, null); in getClassForEncoding()
178 public static Class getClassForEncoding(String type_code, boolean descriptor, in getClassForEncoding() argument
184 switch (type_code.charAt(0)) in getClassForEncoding()
206 + type_code); in getClassForEncoding()
208 type_code = type_code.substring(1, type_code.length() - 1); in getClassForEncoding()
213 return Class.forName(type_code.replace('/', '.'), true, loader); in getClassForEncoding()
224 public static Class getClassForEncoding(String type_code) in getClassForEncoding() argument
227 return getClassForEncoding(type_code, true); in getClassForEncoding()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/gnu/java/lang/reflect/
H A DTypeSignature.java155 public static Class getClassForEncoding(String type_code, boolean descriptor) in getClassForEncoding() argument
158 return getClassForEncoding(type_code, descriptor, null); in getClassForEncoding()
178 public static Class getClassForEncoding(String type_code, boolean descriptor, in getClassForEncoding() argument
184 switch (type_code.charAt(0)) in getClassForEncoding()
206 + type_code); in getClassForEncoding()
208 type_code = type_code.substring(1, type_code.length() - 1); in getClassForEncoding()
213 return Class.forName(type_code.replace('/', '.'), true, loader); in getClassForEncoding()
224 public static Class getClassForEncoding(String type_code) in getClassForEncoding() argument
227 return getClassForEncoding(type_code, true); in getClassForEncoding()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/libjava/gnu/java/lang/reflect/
H A DTypeSignature.java153 public static Class getClassForEncoding(String type_code, boolean descriptor) in getClassForEncoding() argument
156 return getClassForEncoding(type_code, descriptor, null); in getClassForEncoding()
176 public static Class getClassForEncoding(String type_code, boolean descriptor, in getClassForEncoding() argument
182 switch (type_code.charAt(0)) in getClassForEncoding()
204 + type_code); in getClassForEncoding()
206 type_code = type_code.substring(1, type_code.length() - 1); in getClassForEncoding()
211 return Class.forName(type_code.replace('/', '.'), true, loader); in getClassForEncoding()
222 public static Class getClassForEncoding(String type_code) in getClassForEncoding() argument
225 return getClassForEncoding(type_code, true); in getClassForEncoding()
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/gnu/java/lang/reflect/
H A DTypeSignature.java155 public static Class getClassForEncoding(String type_code, boolean descriptor) in getClassForEncoding() argument
158 return getClassForEncoding(type_code, descriptor, null); in getClassForEncoding()
178 public static Class getClassForEncoding(String type_code, boolean descriptor, in getClassForEncoding() argument
184 switch (type_code.charAt(0)) in getClassForEncoding()
206 + type_code); in getClassForEncoding()
208 type_code = type_code.substring(1, type_code.length() - 1); in getClassForEncoding()
213 return Class.forName(type_code.replace('/', '.'), true, loader); in getClassForEncoding()
224 public static Class getClassForEncoding(String type_code) in getClassForEncoding() argument
227 return getClassForEncoding(type_code, true); in getClassForEncoding()
/dports/java/sablevm-classpath/sablevm-classpath-1.13/gnu/java/lang/reflect/
H A DTypeSignature.java153 public static Class getClassForEncoding(String type_code, boolean descriptor) in getClassForEncoding() argument
156 return getClassForEncoding(type_code, descriptor, null); in getClassForEncoding()
176 public static Class getClassForEncoding(String type_code, boolean descriptor, in getClassForEncoding() argument
182 switch (type_code.charAt(0)) in getClassForEncoding()
204 + type_code); in getClassForEncoding()
206 type_code = type_code.substring(1, type_code.length() - 1); in getClassForEncoding()
211 return Class.forName(type_code.replace('/', '.'), true, loader); in getClassForEncoding()
222 public static Class getClassForEncoding(String type_code) in getClassForEncoding() argument
225 return getClassForEncoding(type_code, true); in getClassForEncoding()

12345678910>>...53