HomeSort by relevance Sort by last modified time
    Searched refs:DataType (Results 76 - 100 of 174) sorted by null

1 2 34 5 6 7

  /frameworks/compile/slang/
slang_rs_spec_table.cpp 119 const RSDataTypeSpec *DataType)
121 mDataType(DataType) {
140 const RSDataTypeSpec *DataType,
144 mDataType(DataType),
slang_rs_export_type.cpp 704 RSExportPrimitiveType::DataType dt =
857 RSExportPrimitiveType::DataType
864 RSSpecificTypeMap->GetOrCreateValue(cname, DataType ## type);
867 RSSpecificTypeMap->GetOrCreateValue(cname, DataType ## type);
878 RSExportPrimitiveType::DataType
887 bool RSExportPrimitiveType::IsRSMatrixType(DataType DT) {
891 bool RSExportPrimitiveType::IsRSObjectType(DataType DT) {
926 RSExportPrimitiveType::DataType DT = GetRSSpecificType(FT);
    [all...]
slang_rs_export_element.cpp 40 EI->type = RSExportPrimitiveType::DataType ## _dt; \
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
GLAPISpecTest.java 21 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.Type;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java 264 if ((mType.mElement.mType == Element.DataType.SIGNED_32) ||
265 (mType.mElement.mType == Element.DataType.UNSIGNED_32)) {
273 if ((mType.mElement.mType == Element.DataType.SIGNED_16) ||
274 (mType.mElement.mType == Element.DataType.UNSIGNED_16)) {
282 if ((mType.mElement.mType == Element.DataType.SIGNED_8) ||
283 (mType.mElement.mType == Element.DataType.UNSIGNED_8)) {
291 if (mType.mElement.mType == Element.DataType.FLOAT_32) {
299 if ((mType.mElement.mType == Element.DataType.RS_ELEMENT) ||
300 (mType.mElement.mType == Element.DataType.RS_TYPE) ||
301 (mType.mElement.mType == Element.DataType.RS_ALLOCATION) |
    [all...]
  /external/libmtp/src/
ptp-pack.c 630 PTPPropertyValue* value, uint16_t datatype
632 switch (datatype) {
724 dpd->DataType=dtoh16a(&data[PTP_dpd_DataType]);
729 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FactoryDefaultValue, dpd->DataType);
731 if ((dpd->DataType == PTP_DTC_STR) && (offset == dpdlen))
733 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->CurrentValue, dpd->DataType);
749 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FORM.Range.MinimumValue, dpd->DataType);
751 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FORM.Range.MaximumValue, dpd->DataType);
753 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FORM.Range.StepSize, dpd->DataType);
767 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FORM.Enum.SupportedValue[i], dpd->DataType);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_sanity.c 457 if (imm->Immediate.DataType != TGSI_IMM_FLOAT32 &&
458 imm->Immediate.DataType != TGSI_IMM_UINT32 &&
459 imm->Immediate.DataType != TGSI_IMM_INT32) {
460 report_error( ctx, "(%u): Invalid immediate data type", imm->Immediate.DataType );
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_print.cpp 321 int LValue::print(char *buf, size_t size, DataType ty) const
376 int ImmediateValue::print(char *buf, size_t size, DataType ty) const
400 int Symbol::print(char *buf, size_t size, DataType ty) const
406 Value *rel, Value *dimRel, DataType ty) const
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_parameter.h 75 GLenum DataType; /**< GL_FLOAT, GL_FLOAT_VEC2, etc */
131 GLuint size, GLenum datatype,
148 GLenum datatype, GLuint *swizzleOut);
157 const char *name, GLuint size, GLenum datatype,
162 const char *name, GLint size, GLenum datatype, GLint attrib);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_sanity.c 457 if (imm->Immediate.DataType != TGSI_IMM_FLOAT32 &&
458 imm->Immediate.DataType != TGSI_IMM_UINT32 &&
459 imm->Immediate.DataType != TGSI_IMM_INT32) {
460 report_error( ctx, "(%u): Invalid immediate data type", imm->Immediate.DataType );
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_print.cpp 321 int LValue::print(char *buf, size_t size, DataType ty) const
376 int ImmediateValue::print(char *buf, size_t size, DataType ty) const
400 int Symbol::print(char *buf, size_t size, DataType ty) const
406 Value *rel, Value *dimRel, DataType ty) const
  /external/mesa3d/src/mesa/program/
prog_parameter.h 75 GLenum DataType; /**< GL_FLOAT, GL_FLOAT_VEC2, etc */
131 GLuint size, GLenum datatype,
148 GLenum datatype, GLuint *swizzleOut);
157 const char *name, GLuint size, GLenum datatype,
162 const char *name, GLint size, GLenum datatype, GLint attrib);
prog_parameter.c 103 * \param datatype GL_FLOAT, GL_FLOAT_VECx, GL_INT, GL_INT_VECx or GL_NONE.
111 GLuint size, GLenum datatype,
158 p->DataType = datatype;
246 GLenum datatype, GLuint *swizzleOut)
279 size, datatype, values, NULL, 0x0);
316 const char *name, GLuint size, GLenum datatype,
327 size, datatype, NULL, NULL, flags);
340 const char *name, GLint size, GLenum datatype, GLint attrib)
356 size, datatype, NULL, state, 0x0)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
formats.c 55 GLenum DataType;
86 GL_NONE, /* DataType */
95 GL_UNSIGNED_NORMALIZED, /* DataType */
104 GL_UNSIGNED_NORMALIZED, /* DataType */
113 GL_UNSIGNED_NORMALIZED, /* DataType */
122 GL_UNSIGNED_NORMALIZED, /* DataType */
131 GL_UNSIGNED_NORMALIZED, /* DataType */
140 GL_UNSIGNED_NORMALIZED, /* DataType */
149 GL_UNSIGNED_NORMALIZED, /* DataType */
158 GL_UNSIGNED_NORMALIZED, /* DataType */
1955 GLenum datatype = 0; local
    [all...]
  /external/mesa3d/src/mesa/main/
formats.c 55 GLenum DataType;
86 GL_NONE, /* DataType */
95 GL_UNSIGNED_NORMALIZED, /* DataType */
104 GL_UNSIGNED_NORMALIZED, /* DataType */
113 GL_UNSIGNED_NORMALIZED, /* DataType */
122 GL_UNSIGNED_NORMALIZED, /* DataType */
131 GL_UNSIGNED_NORMALIZED, /* DataType */
140 GL_UNSIGNED_NORMALIZED, /* DataType */
149 GL_UNSIGNED_NORMALIZED, /* DataType */
158 GL_UNSIGNED_NORMALIZED, /* DataType */
1955 GLenum datatype = 0; local
    [all...]
  /external/chromium_org/dbus/
message.h 65 enum DataType {
461 Message::DataType GetDataType();
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSyncRS.java 23 import android.renderscript.Element.DataType;
192 Element.createPixel(mRS, DataType.UNSIGNED_16,
FBOTestRS.java 23 import android.renderscript.Element.DataType;
184 Element.createPixel(mRS, DataType.UNSIGNED_16,
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestRS.java 23 import android.renderscript.Element.DataType;
196 b = new Builder(mRS, Element.createPixel(mRS, DataType.UNSIGNED_16, DataKind.PIXEL_DEPTH));
  /external/chromium_org/ui/base/x/
device_data_manager.cc 68 // with the order in the DataType enum in the header file because we assume
299 const DataType type, double* value) {
382 const XIDeviceEvent* xiev, const DataType type) const {
529 const DataType type,
542 const DataType type,
579 DataType data_type,
events_x_unittest.cc 53 Valuator(DeviceDataManager::DataType type, double v)
56 DeviceDataManager::DataType data_type;
120 static_cast<DeviceDataManager::DataType>(kTouchValuatorMap[j][1]),
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 100 protected enum DataType {
292 * @param type The type of data to generate: currently, one of {@link DataType#TEXT} or
293 * {@link DataType#BINARY}.
296 protected byte[] generateData(int size, DataType type) {
304 * @param type The type of data to generate: currently, one of {@link DataType#TEXT} or
305 * {@link DataType#BINARY}.
309 protected byte[] generateData(int size, DataType type, Random rng) {
314 if (type == DataType.TEXT) {
587 protected File createFileOnSD(String filename, long fileSize, DataType type,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/46/1/.cp/lib/
repository-tools-ant.jar 
  /frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
RsYuv.java 85 tb = new Type.Builder(mRS, Element.createPixel(mRS, Element.DataType.UNSIGNED_8, Element.DataKind.PIXEL_YUV));
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 31 import android.renderscript.Element.DataType;
295 Element.createPixel(mRS, DataType.UNSIGNED_16,

Completed in 468 milliseconds

1 2 34 5 6 7