Searched refs:DataType (Results 1 - 25 of 102) sorted by relevance

12345

/xsrc/external/mit/brotli/dist/c/enc/
H A Dhistogram.h30 #define DataType uint8_t macro
32 #undef DataType
37 #define DataType uint16_t macro
46 #undef DataType
H A Dblock_splitter.c90 #define DataType uint8_t macro
93 #undef DataType
97 #define DataType uint16_t macro
105 #undef DataType
H A Dhistogram_inc.h8 /* template parameters: Histogram, DATA_SIZE, DataType */
36 const DataType* p, size_t n) {
H A Dblock_splitter_inc.h8 /* template parameters: FN, DataType */
12 static void FN(InitialEntropyCodes)(const DataType* data, size_t length,
33 const DataType* data,
46 static void FN(RefineEntropyCodes)(const DataType* data, size_t length,
66 static size_t FN(FindBlocks)(const DataType* data, const size_t length,
177 static void FN(BuildBlockHistograms)(const DataType* data, const size_t length,
189 const DataType* data, const size_t length,
365 const DataType* data, const size_t length,
/xsrc/external/mit/MesaLib.old/src/mesa/
H A Dformat_info.h39 .DataType = GL_NONE,
53 .DataType = GL_UNSIGNED_NORMALIZED,
67 .DataType = GL_UNSIGNED_NORMALIZED,
81 .DataType = GL_UNSIGNED_NORMALIZED,
95 .DataType = GL_UNSIGNED_NORMALIZED,
109 .DataType = GL_UNSIGNED_NORMALIZED,
123 .DataType = GL_UNSIGNED_NORMALIZED,
137 .DataType = GL_UNSIGNED_NORMALIZED,
151 .DataType = GL_UNSIGNED_NORMALIZED,
165 .DataType
[all...]
/xsrc/external/mit/MesaLib/src/mesa/
H A Dformat_info.h39 .DataType = GL_NONE,
53 .DataType = GL_UNSIGNED_NORMALIZED,
67 .DataType = GL_UNSIGNED_NORMALIZED,
81 .DataType = GL_UNSIGNED_NORMALIZED,
95 .DataType = GL_UNSIGNED_NORMALIZED,
109 .DataType = GL_UNSIGNED_NORMALIZED,
123 .DataType = GL_UNSIGNED_NORMALIZED,
137 .DataType = GL_UNSIGNED_NORMALIZED,
151 .DataType = GL_UNSIGNED_NORMALIZED,
165 .DataType
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_build_util.h52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
61 Instruction *mkLoad(DataType, Value *dst, Symbol *, Value *ptr);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
64 LValue *mkLoadv(DataType, Symbo
[all...]
H A Dnv50_ir_lowering_helper.cpp61 DataType dTy = insn->dType;
85 DataType dTy = insn->dType;
86 DataType sTy = insn->sType;
115 DataType dTy = insn->dType;
119 DataType sTy = typeOfSize(4, false, isSignedIntType(dTy));
151 DataType dTy = insn->dType;
193 DataType dTy = insn->dType;
210 DataType dTy = insn->dType;
211 DataType sTy = insn->sType;
217 DataType hdT
[all...]
H A Dnv50_ir_target_gm107.h18 virtual bool isOpSupported(operation, DataType) const;
H A Dnv50_ir_target_nv50.h51 virtual bool isOpSupported(operation, DataType) const;
52 virtual bool isAccessSupported(DataFile, DataType) const;
H A Dnv50_ir_target_nvc0.h57 virtual bool isOpSupported(operation, DataType) const;
58 virtual bool isAccessSupported(DataFile, DataType) const;
H A Dnv50_ir_inlines.h54 static inline unsigned int typeSizeof(DataType ty)
81 static inline unsigned int typeSizeofLog2(DataType ty)
106 static inline DataType typeOfSize(unsigned int size,
122 static inline bool isFloatType(DataType ty)
127 static inline bool isSignedIntType(DataType ty)
132 static inline bool isSignedType(DataType ty)
148 static inline DataType intTypeToSigned(DataType ty)
H A Dnv50_ir_build_util.cpp66 BuildUtil::mkOp1(operation op, DataType ty, Value *dst, Value *src)
78 BuildUtil::mkOp2(operation op, DataType ty, Value *dst,
92 BuildUtil::mkOp3(operation op, DataType ty, Value *dst,
107 BuildUtil::mkLoad(DataType ty, Value *dst, Symbol *mem, Value *ptr)
121 BuildUtil::mkStore(operation op, DataType ty, Symbol *mem, Value *ptr,
136 BuildUtil::mkFetch(Value *dst, DataType ty, DataFile file, int32_t offset,
154 DataType ty = TYPE_F32;
171 BuildUtil::mkMov(Value *dst, Value *src, DataType ty)
210 DataType dstTy, Value *dst, DataType srcT
[all...]
H A Dnv50_ir.h245 // Yes, we could represent those with DataType.
285 enum DataType enum in namespace:nv50_ir
530 DataType type; // mainly for pretty printing
677 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const = 0;
726 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const;
748 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const;
751 int print(char *, size_t, Value *, Value *, DataType ty = TYPE_NONE) const;
777 ImmediateValue(const ImmediateValue *, DataType ty);
801 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const;
808 Instruction(Function *, operation, DataType);
[all...]
H A Dnv50_ir_from_nir.cpp108 Instruction *loadFrom(DataFile, uint8_t, DataType, Value *def, uint32_t base,
111 void storeTo(nir_intrinsic_instr *, DataFile, operation, DataType,
120 DataType getDType(nir_alu_instr *);
121 DataType getDType(nir_intrinsic_instr *);
122 DataType getDType(nir_intrinsic_instr *, bool isSigned);
123 DataType getDType(nir_op, uint8_t);
125 std::vector<DataType> getSTypes(nir_alu_instr *);
126 DataType getSType(nir_src &, bool isFloat, bool isSigned);
248 DataType
257 DataType
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_build_util.h52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
61 Instruction *mkLoad(DataType, Value *dst, Symbol *, Value *ptr);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
64 LValue *mkLoadv(DataType, Symbo
[all...]
H A Dnv50_ir_lowering_helper.cpp61 DataType dTy = insn->dType;
85 DataType dTy = insn->dType;
86 DataType sTy = insn->sType;
115 DataType dTy = insn->dType;
119 DataType sTy = typeOfSize(4, false, isSignedIntType(dTy));
151 DataType dTy = insn->dType;
193 DataType dTy = insn->dType;
210 DataType dTy = insn->dType;
211 DataType sTy = insn->sType;
217 DataType hdT
[all...]
H A Dnv50_ir_target_gm107.h18 virtual bool isOpSupported(operation, DataType) const;
H A Dnv50_ir_target_gv100.h40 virtual bool isOpSupported(operation, DataType) const;
H A Dnv50_ir_target_nv50.h52 virtual bool isOpSupported(operation, DataType) const;
53 virtual bool isAccessSupported(DataFile, DataType) const;
H A Dnv50_ir_target_nvc0.h57 virtual bool isOpSupported(operation, DataType) const;
58 virtual bool isAccessSupported(DataFile, DataType) const;
H A Dnv50_ir_inlines.h54 static inline unsigned int typeSizeof(DataType ty)
81 static inline unsigned int typeSizeofLog2(DataType ty)
106 static inline DataType typeOfSize(unsigned int size,
122 static inline bool isFloatType(DataType ty)
127 static inline bool isSignedIntType(DataType ty)
132 static inline bool isSignedType(DataType ty)
148 static inline DataType intTypeToSigned(DataType ty)
H A Dnv50_ir_build_util.cpp68 BuildUtil::mkOp1(operation op, DataType ty, Value *dst, Value *src)
80 BuildUtil::mkOp2(operation op, DataType ty, Value *dst,
94 BuildUtil::mkOp3(operation op, DataType ty, Value *dst,
109 BuildUtil::mkLoad(DataType ty, Value *dst, Symbol *mem, Value *ptr)
123 BuildUtil::mkStore(operation op, DataType ty, Symbol *mem, Value *ptr,
138 BuildUtil::mkFetch(Value *dst, DataType ty, DataFile file, int32_t offset,
156 DataType ty = TYPE_F32;
173 BuildUtil::mkMov(Value *dst, Value *src, DataType ty)
212 DataType dstTy, Value *dst, DataType srcT
[all...]
H A Dnv50_ir.h252 // Yes, we could represent those with DataType.
310 enum DataType enum in namespace:nv50_ir
581 DataType type; // mainly for pretty printing
729 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const = 0;
778 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const;
800 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const;
803 int print(char *, size_t, Value *, Value *, DataType ty = TYPE_NONE) const;
829 ImmediateValue(const ImmediateValue *, DataType ty);
853 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const;
860 Instruction(Function *, operation, DataType);
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/osmesa/
H A Dosmesa.c83 GLenum DataType; member in struct:osmesa_context
457 if (osmesa->DataType == GL_UNSIGNED_BYTE) {
463 else if (osmesa->DataType == GL_UNSIGNED_SHORT) {
471 if (osmesa->DataType == GL_UNSIGNED_BYTE) {
477 else if (osmesa->DataType == GL_UNSIGNED_SHORT) {
487 if (osmesa->DataType == GL_UNSIGNED_BYTE) {
493 else if (osmesa->DataType == GL_UNSIGNED_SHORT) {
503 if (osmesa->DataType == GL_UNSIGNED_BYTE) {
506 else if (osmesa->DataType == GL_UNSIGNED_SHORT) {
516 if (osmesa->DataType
[all...]

Completed in 24 milliseconds

12345