Home
last modified time | relevance | path

Searched refs:IntType (Results 1 – 25 of 112) sorted by relevance

12345

/external/syzkaller/sys/windows/gen/
Damd64.go14 …{Name: "HANDLE", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int…
15 …{Name: "hFile", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "intp…
23 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", FldName: "bInherit…
27 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", FldName: "stub", T…
33 …&PtrType{TypeCommon: TypeCommon{TypeName: "ptr", FldName: "hdc", TypeSize: 8}, Type: &IntType{IntT…
36 …&PtrType{TypeCommon: TypeCommon{TypeName: "ptr", FldName: "hdc", TypeSize: 8}, Type: &IntType{IntT…
42 …peCommon{TypeName: "ptr", FldName: "lpMachineName", TypeSize: 8}, Type: &IntType{IntTypeCommon: In…
45 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int64", FldName: "sListenS…
46 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int64", FldName: "sAcceptS…
48 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", FldName: "dwReceiv…
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dconcat_lib_gpu_impl.cu.cc36 template <typename T, typename IntType>
41 IntType gidx = blockIdx.x * blockDim.x + threadIdx.x; in concat_fixed_kernel()
44 IntType gidy = blockIdx.y * blockDim.y + threadIdx.y; in concat_fixed_kernel()
46 IntType split = gidx / split_size; in concat_fixed_kernel()
48 IntType col_offset = gidx % split_size; in concat_fixed_kernel()
60 template <typename T, typename IntType, bool useSmem>
63 GpuDeviceArrayStruct<IntType> output_scan, IntType total_rows, in concat_variable_kernel()
64 IntType total_cols, T* output) { in concat_variable_kernel()
66 IntType* col_scan = GetGpuDeviceArrayOnDevice(&output_scan); in concat_variable_kernel()
69 IntType gidx = blockIdx.x * blockDim.x + threadIdx.x; in concat_variable_kernel()
[all …]
Dsplit_lib_gpu.cu.cc115 template <typename T, typename IntType, bool useSmem>
117 GpuDeviceArrayStruct<IntType> output_scan, in split_v_kernel()
118 IntType total_rows, IntType total_cols, in split_v_kernel()
121 IntType* col_scan = GetGpuDeviceArrayOnDevice(&output_scan); in split_v_kernel()
124 IntType gidx = blockIdx.x * blockDim.x + threadIdx.x; in split_v_kernel()
129 IntType* smem_col_scan = reinterpret_cast<IntType*>(smem); in split_v_kernel()
132 IntType lidx = threadIdx.y * blockDim.x + threadIdx.x; in split_v_kernel()
133 IntType blockSize = blockDim.x * blockDim.y; in split_v_kernel()
135 for (IntType i = lidx; i < output_scan.size; i += blockSize) { in split_v_kernel()
147 IntType segment = in split_v_kernel()
[all …]
/external/tensorflow/tensorflow/core/lib/gtl/
Dint_type.h168 class IntType; variable
175 typedef ::tensorflow::gtl::IntType<int_type_name##_tag_, value_type> \
188 class IntType {
191 typedef IntType<IntTypeName, ValueType> ThisType; // Syntactic sugar.
195 size_t operator()(const IntType& arg) const { in operator()
202 constexpr IntType() : value_(0) {} in IntType() function
204 constexpr explicit IntType(ValueType value) : value_(value) {} in IntType() function
284 IntType<IntTypeName, ValueType> arg) {
297 static inline constexpr IntType<IntTypeName, ValueType> operator op( \
298 IntType<IntTypeName, ValueType> id_1, \
[all …]
/external/dynamic_depth/internal/strings/
Dnumbers.cc131 template <typename IntType>
133 static const IntType kVmaxOverBase[];
134 static const IntType kVminOverBase[];
149 template <typename IntType>
150 const IntType LookupTables<IntType>::kVmaxOverBase[] =
151 X_OVER_BASE_INITIALIZER(std::numeric_limits<IntType>::max());
153 template <typename IntType>
154 const IntType LookupTables<IntType>::kVminOverBase[] =
155 X_OVER_BASE_INITIALIZER(std::numeric_limits<IntType>::min());
159 template <typename IntType>
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DPointerIntPair.h39 template <typename PointerTy, unsigned IntBits, typename IntType=unsigned,
60 PointerIntPair(PointerTy Ptr, IntType Int) : Value(0) { in PointerIntPair()
72 IntType getInt() const { in getInt()
73 return (IntType)((Value >> IntShift) & IntMask); in getInt()
85 void setInt(IntType Int) { in setInt()
117 template<typename PointerTy, unsigned IntBits, typename IntType>
118 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType> > {
123 template<typename PointerTy, unsigned IntBits, typename IntType>
124 struct DenseMapInfo<PointerIntPair<PointerTy, IntBits, IntType> > {
125 typedef PointerIntPair<PointerTy, IntBits, IntType> Ty;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DPointerIntPair.h41 template <typename PointerTy, unsigned IntBits, typename IntType = unsigned,
50 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair()
58 IntType getInt() const { return (IntType)Info::getInt(Value); } in getInt()
64 void setInt(IntType IntVal) { in setInt()
72 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) { in setPointerAndInt()
178 template <typename PointerTy, unsigned IntBits, typename IntType>
179 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType>> {
184 template <typename PointerTy, unsigned IntBits, typename IntType>
185 struct DenseMapInfo<PointerIntPair<PointerTy, IntBits, IntType>> {
186 using Ty = PointerIntPair<PointerTy, IntBits, IntType>;
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DPointerIntPair.h43 template <typename PointerTy, unsigned IntBits, typename IntType = unsigned,
51 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair()
58 IntType getInt() const { in getInt()
59 return (IntType)Info::getInt(Value); in getInt()
66 void setInt(IntType IntVal) { in setInt()
74 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) { in setPointerAndInt()
175 template <typename PointerTy, unsigned IntBits, typename IntType>
176 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType>> {
181 template <typename PointerTy, unsigned IntBits, typename IntType>
182 struct DenseMapInfo<PointerIntPair<PointerTy, IntBits, IntType>> {
[all …]
/external/llvm/include/llvm/ADT/
DPointerIntPair.h43 template <typename PointerTy, unsigned IntBits, typename IntType = unsigned,
51 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair()
58 IntType getInt() const { in getInt()
59 return (IntType)Info::getInt(Value); in getInt()
66 void setInt(IntType IntVal) { in setInt()
74 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) { in setPointerAndInt()
175 template <typename PointerTy, unsigned IntBits, typename IntType>
176 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType>> {
181 template <typename PointerTy, unsigned IntBits, typename IntType>
182 struct DenseMapInfo<PointerIntPair<PointerTy, IntBits, IntType>> {
[all …]
/external/syzkaller/sys/fuchsia/gen/
Darm64.go14 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
15 …{Name: "gid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32"…
16 …{Name: "koid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int64…
17 …{Name: "pid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32"…
18 …{Name: "uid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32"…
19 …{Name: "zx_chan", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "in…
20 …{Name: "zx_chan_fuchsia_process_Launcher_client", Type: &IntType{IntTypeCommon: IntTypeCommon{Type…
21 …{Name: "zx_chan_fuchsia_process_Launcher_server", Type: &IntType{IntTypeCommon: IntTypeCommon{Type…
22 …{Name: "zx_debug_log", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName…
23 …{Name: "zx_event", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
[all …]
Damd64.go14 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
15 …{Name: "gid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32"…
16 …{Name: "koid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int64…
17 …{Name: "pid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32"…
18 …{Name: "uid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32"…
19 …{Name: "zx_chan", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "in…
20 …{Name: "zx_chan_fuchsia_process_Launcher_client", Type: &IntType{IntTypeCommon: IntTypeCommon{Type…
21 …{Name: "zx_chan_fuchsia_process_Launcher_server", Type: &IntType{IntTypeCommon: IntTypeCommon{Type…
22 …{Name: "zx_debug_log", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName…
23 …{Name: "zx_event", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
[all …]
/external/syzkaller/sys/test/gen/
D64.go14 …{Name: "anyres32", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
15 …{Name: "anyres64", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
16 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
17 …{Name: "r_any", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int3…
18 …{Name: "syz_missing_const_res", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon…
19 …{Name: "syz_res", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "in…
20 …{Name: "unsupported", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName:…
25 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int16", FldName: "f0", Typ…
27 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", FldName: "f1", Typ…
28 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int8", FldName: "f2", Type…
[all …]
D32.go10 …{Name: "anyres32", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
11 …{Name: "anyres64", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
12 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
13 …{Name: "r_any", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int3…
14 …{Name: "syz_missing_const_res", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon…
15 …{Name: "syz_res", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "in…
16 …{Name: "unsupported", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName:…
21 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int8", FldName: "f1", Type…
23 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", FldName: "f2", Typ…
24 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int16be", FldName: "f3", T…
[all …]
D64_fork.go17 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int16", FldName: "f0", Typ…
19 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", FldName: "f1", Typ…
20 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int8", FldName: "f2", Type…
22 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int16", FldName: "f3", Typ…
24 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int64", FldName: "f4", Typ…
39 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", FldName: "v", Type…
D32_fork_shmem.go17 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int16", FldName: "f0", Typ…
19 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", FldName: "f1", Typ…
20 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int8", FldName: "f2", Type…
22 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int16", FldName: "f3", Typ…
24 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int64", FldName: "f4", Typ…
39 …&IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", FldName: "v", Type…
/external/v8/src/wasm/
Ddecoder.h276 template <typename IntType, bool validate>
277 inline IntType read_little_endian(const byte* pc, const char* msg) { in read_little_endian()
279 DCHECK(validate_size(pc, sizeof(IntType), msg)); in read_little_endian()
280 } else if (!validate_size(pc, sizeof(IntType), msg)) { in read_little_endian()
281 return IntType{0}; in read_little_endian()
283 return ReadLittleEndianValue<IntType>(reinterpret_cast<Address>(pc)); in read_little_endian()
286 template <typename IntType>
287 inline IntType consume_little_endian(const char* name) { in consume_little_endian()
289 if (!checkAvailable(sizeof(IntType))) { in consume_little_endian()
292 return IntType{0}; in consume_little_endian()
[all …]
/external/clang/include/clang/Basic/
DTargetInfo.h124 enum IntType { enum
188 IntType SizeType, IntMaxType, PtrDiffType, IntPtrType, WCharType,
225 IntType getSizeType() const { return SizeType; } in getSizeType()
226 IntType getIntMaxType() const { return IntMaxType; } in getIntMaxType()
227 IntType getUIntMaxType() const { in getUIntMaxType()
230 IntType getPtrDiffType(unsigned AddrSpace) const { in getPtrDiffType()
233 IntType getIntPtrType() const { return IntPtrType; } in getIntPtrType()
234 IntType getUIntPtrType() const { in getUIntPtrType()
237 IntType getWCharType() const { return WCharType; } in getWCharType()
238 IntType getWIntType() const { return WIntType; } in getWIntType()
[all …]
/external/syzkaller/sys/linux/gen/
D386.go14 …{Name: "assoc_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
15 …{Name: "binder_ptr", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
16 …{Name: "bpf_map_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
17 …{Name: "bpf_prog_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName:…
18 …{Name: "drm_agp_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
19 …{Name: "drm_gem_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
20 …{Name: "drm_gem_name", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName…
21 …{Name: "drmctx", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int…
22 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
23 …{Name: "fd_ashmem", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "…
[all …]
Darm64.go14 …{Name: "assoc_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
15 …{Name: "binder_ptr", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
16 …{Name: "bpf_map_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
17 …{Name: "bpf_prog_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName:…
18 …{Name: "drm_agp_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
19 …{Name: "drm_gem_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
20 …{Name: "drm_gem_name", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName…
21 …{Name: "drmctx", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int…
22 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
23 …{Name: "fd_ashmem", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "…
[all …]
Darm.go14 …{Name: "assoc_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
15 …{Name: "binder_ptr", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
16 …{Name: "bpf_map_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
17 …{Name: "bpf_prog_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName:…
18 …{Name: "drm_agp_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
19 …{Name: "drm_gem_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
20 …{Name: "drm_gem_name", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName…
21 …{Name: "drmctx", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int…
22 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
23 …{Name: "fd_ashmem", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "…
[all …]
Damd64.go14 …{Name: "assoc_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
15 …{Name: "binder_ptr", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
16 …{Name: "bpf_map_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
17 …{Name: "bpf_prog_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName:…
18 …{Name: "drm_agp_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
19 …{Name: "drm_gem_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
20 …{Name: "drm_gem_name", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName…
21 …{Name: "drmctx", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int…
22 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
23 …{Name: "fd_ashmem", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "…
[all …]
Dppc64le.go14 …{Name: "assoc_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "i…
15 …{Name: "binder_ptr", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
16 …{Name: "bpf_map_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: …
17 …{Name: "bpf_prog_id", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName:…
18 …{Name: "drm_agp_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
19 …{Name: "drm_gem_handle", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeNa…
20 …{Name: "drm_gem_name", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName…
21 …{Name: "drmctx", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int…
22 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
23 …{Name: "fd_ashmem", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "…
[all …]
/external/syzkaller/sys/netbsd/gen/
Damd64.go14 …{Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32",…
15 …{Name: "fd_dir", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int…
16 …{Name: "gid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32"…
17 …{Name: "ipc", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32"…
18 …{Name: "ipc_msq", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "in…
19 …{Name: "ipc_sem", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "in…
20 …{Name: "ipc_shm", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "in…
21 …{Name: "pid", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32"…
22 …{Name: "shmaddr", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "in…
23 …{Name: "sock", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32…
[all …]
/external/pdfium/core/fxcrt/
Dfx_system.cpp15 template <typename IntType, typename CharType>
16 IntType FXSYS_StrToInt(const CharType* str) { in FXSYS_StrToInt()
25 IntType num = 0; in FXSYS_StrToInt()
27 IntType val = FXSYS_DecimalCharToInt(*str); in FXSYS_StrToInt()
28 if (num > (std::numeric_limits<IntType>::max() - val) / 10) { in FXSYS_StrToInt()
29 if (neg && std::numeric_limits<IntType>::is_signed) { in FXSYS_StrToInt()
32 return std::numeric_limits<IntType>::min(); in FXSYS_StrToInt()
36 return std::numeric_limits<IntType>::max(); in FXSYS_StrToInt()
/external/protobuf/src/google/protobuf/stubs/
Dmathlimits.h165 #define DECL_SIGNED_INT_LIMITS(IntType, UnsignedIntType) \ argument
167 struct LIBPROTOBUF_EXPORT MathLimits<IntType> { \
168 typedef IntType Type; \
185 #define DECL_UNSIGNED_INT_LIMITS(IntType) \ argument
187 struct LIBPROTOBUF_EXPORT MathLimits<IntType> { \
188 typedef IntType Type; \
189 typedef IntType UnsignedType; \

12345