/external/syzkaller/sys/windows/gen/ |
D | amd64.go | 14 …{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/ |
D | concat_lib_gpu_impl.cu.cc | 36 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 …]
|
D | split_lib_gpu.cu.cc | 115 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/ |
D | int_type.h | 168 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/ |
D | numbers.cc | 131 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/ |
D | PointerIntPair.h | 39 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/ |
D | PointerIntPair.h | 41 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/ |
D | PointerIntPair.h | 43 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/ |
D | PointerIntPair.h | 43 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/ |
D | arm64.go | 14 …{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 …]
|
D | amd64.go | 14 …{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/ |
D | 64.go | 14 …{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 …]
|
D | 32.go | 10 …{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 …]
|
D | 64_fork.go | 17 …&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…
|
D | 32_fork_shmem.go | 17 …&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/ |
D | decoder.h | 276 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/ |
D | TargetInfo.h | 124 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/ |
D | 386.go | 14 …{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 …]
|
D | arm64.go | 14 …{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 …]
|
D | arm.go | 14 …{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 …]
|
D | amd64.go | 14 …{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 …]
|
D | ppc64le.go | 14 …{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/ |
D | amd64.go | 14 …{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/ |
D | fx_system.cpp | 15 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/ |
D | mathlimits.h | 165 #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; \
|