HomeSort by relevance Sort by last modified time
    Searched refs:sType (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/i18n/
islamcal.cpp 174 const char *sType = NULL;
178 sType = "islamic-civil";
181 sType = "islamic";
184 sType = "islamic-tbla";
187 sType = "islamic-umalqura";
191 sType = "islamic"; // "islamic" is used as the generic type
194 return sType;
  /external/icu/icu4c/source/i18n/
islamcal.cpp 174 const char *sType = NULL;
178 sType = "islamic-civil";
181 sType = "islamic";
184 sType = "islamic-tbla";
187 sType = "islamic-umalqura";
191 sType = "islamic"; // "islamic" is used as the generic type
194 return sType;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_emit_nv50.cpp 608 assert(offset <= (int32_t)(0x3fff * typeSizeof(i->sType)));
615 emitLoadStoreSizeCS(i->sType);
617 assert(offset <= (int32_t)(0x1f * typeSizeof(i->sType)));
620 emitLoadStoreSizeCS(i->sType);
628 emitLoadStoreSizeCS(i->sType);
644 emitLoadStoreSizeLG(i->sType, 21 + 32);
968 code[1] = (i->sType == TYPE_S16) ? (0x8000 | 0x4000) : 0x0000;
971 if (i->sType == TYPE_S16)
1006 if (isSignedType(i->sType))
1033 switch (i->sType) {
    [all...]
nv50_ir_peephole.cpp 303 if (insn->sType != next->dType)
651 if (!isFloatType(i->sType) && !imm0.isNegative() && imm0.isPow2()) {
754 if (i->sType == TYPE_U32 && imm0.isPow2()) {
786 i->sType = si->sType;
858 if (i->sType == TYPE_U32 && mi->dType == TYPE_S32) {
865 if (i->sType != mi->dType) {
944 if (abs->dType != abs->sType || ty != abs->sType)
962 neg->dType != neg->sType || neg->sType != ty
    [all...]
nv50_ir_print.cpp 537 if (sType != dType)
538 PRINT(" %s%s", colour[TXT_INSN], DataTypeStr[sType]);
553 pos += getSrc(s)->print(&buf[pos], BUFSZ - pos, sType);
nv50_ir_lowering_nv50.cpp 45 DataType fTy = mul->sType; // full type
102 i[j]->sType = hTy;
173 i->dType = i->sType = TYPE_U32;
355 if (isFloatType(mul->sType) || typeSizeof(mul->sType) <= 2)
367 mul = bld.mkOp2(OP_MUL, add->sType, res, add->getSrc(0), add->getSrc(1));
387 const DataType ty = div->sType;
856 sym = bld.mkSymbol(FILE_SHADER_OUTPUT, 0, i->sType, addr);
nv50_ir.cpp 84 DataType type = src->insn->sType;
88 if (src->insn->sType != type)
587 dType = sType = TYPE_F32;
598 dType = sType = ty;
724 i->sType = sType;
nv50_ir.h 646 inline void setType(DataType type) { dType = sType = type; }
648 inline void setType(DataType dtype, DataType stype)
651 sType = stype;
678 DataType sType; // source or secondary type
nv50_ir_target_nv50.cpp 428 if (insn->sType != TYPE_F32)
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_emit_nv50.cpp 608 assert(offset <= (int32_t)(0x3fff * typeSizeof(i->sType)));
615 emitLoadStoreSizeCS(i->sType);
617 assert(offset <= (int32_t)(0x1f * typeSizeof(i->sType)));
620 emitLoadStoreSizeCS(i->sType);
628 emitLoadStoreSizeCS(i->sType);
644 emitLoadStoreSizeLG(i->sType, 21 + 32);
968 code[1] = (i->sType == TYPE_S16) ? (0x8000 | 0x4000) : 0x0000;
971 if (i->sType == TYPE_S16)
1006 if (isSignedType(i->sType))
1033 switch (i->sType) {
    [all...]
nv50_ir_peephole.cpp 303 if (insn->sType != next->dType)
651 if (!isFloatType(i->sType) && !imm0.isNegative() && imm0.isPow2()) {
754 if (i->sType == TYPE_U32 && imm0.isPow2()) {
786 i->sType = si->sType;
858 if (i->sType == TYPE_U32 && mi->dType == TYPE_S32) {
865 if (i->sType != mi->dType) {
944 if (abs->dType != abs->sType || ty != abs->sType)
962 neg->dType != neg->sType || neg->sType != ty
    [all...]
nv50_ir_print.cpp 537 if (sType != dType)
538 PRINT(" %s%s", colour[TXT_INSN], DataTypeStr[sType]);
553 pos += getSrc(s)->print(&buf[pos], BUFSZ - pos, sType);
nv50_ir_lowering_nv50.cpp 45 DataType fTy = mul->sType; // full type
102 i[j]->sType = hTy;
173 i->dType = i->sType = TYPE_U32;
355 if (isFloatType(mul->sType) || typeSizeof(mul->sType) <= 2)
367 mul = bld.mkOp2(OP_MUL, add->sType, res, add->getSrc(0), add->getSrc(1));
387 const DataType ty = div->sType;
856 sym = bld.mkSymbol(FILE_SHADER_OUTPUT, 0, i->sType, addr);
nv50_ir.cpp 84 DataType type = src->insn->sType;
88 if (src->insn->sType != type)
587 dType = sType = TYPE_F32;
598 dType = sType = ty;
724 i->sType = sType;
nv50_ir.h 646 inline void setType(DataType type) { dType = sType = type; }
648 inline void setType(DataType dtype, DataType stype)
651 sType = stype;
678 DataType sType; // source or secondary type
nv50_ir_target_nv50.cpp 428 if (insn->sType != TYPE_F32)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
nv50_ir_target_nvc0.cpp 424 if (i->sType == TYPE_F32) {
428 if (i->sType == TYPE_S32 || i->sType == TYPE_U32) {
543 if (i->dType == TYPE_F64 || i->sType == TYPE_F64)
672 typeSizeof(a->sType) > 4 || typeSizeof(b->sType) > 4)
nv50_ir_emit_nvc0.cpp 508 if (i->sType == TYPE_S32)
515 if (i->sType == TYPE_S32)
608 if (isSignedType(i->sType))
798 const bool f2f = isFloatType(i->dType) && isFloatType(i->sType);
819 code[0] |= util_logbase2(typeSizeof(i->sType)) << 23;
833 if (isSignedIntType(i->sType))
837 if (!isFloatType(i->sType))
840 if (isFloatType(i->sType))
850 if (isFloatType(i->sType))
853 code[0] = 0x088 | (isSignedType(i->sType) ? (1 << 8) : 0)
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_target_nvc0.cpp 424 if (i->sType == TYPE_F32) {
428 if (i->sType == TYPE_S32 || i->sType == TYPE_U32) {
543 if (i->dType == TYPE_F64 || i->sType == TYPE_F64)
672 typeSizeof(a->sType) > 4 || typeSizeof(b->sType) > 4)
nv50_ir_emit_nvc0.cpp 508 if (i->sType == TYPE_S32)
515 if (i->sType == TYPE_S32)
608 if (isSignedType(i->sType))
798 const bool f2f = isFloatType(i->dType) && isFloatType(i->sType);
819 code[0] |= util_logbase2(typeSizeof(i->sType)) << 23;
833 if (isSignedIntType(i->sType))
837 if (!isFloatType(i->sType))
840 if (isFloatType(i->sType))
850 if (isFloatType(i->sType))
853 code[0] = 0x088 | (isSignedType(i->sType) ? (1 << 8) : 0)
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 211 String sType = cursor.getString(cursor.getColumnIndex(ENTRY_TYPE));
212 TrackerEntry entry = new TrackerEntry(tag, EntryType.valueOf(sType));
  /external/pdfium/fpdfsdk/include/
fsdk_baseform.h 265 CBA_AnnotIterator(CPDFSDK_PageView* pPageView, const CFX_ByteString& sType, const CFX_ByteString& sSubType);
fsdk_annothandler.h 206 IPDFSDK_AnnotHandler* GetAnnotHandler(const CFX_ByteString& sType) const;
  /external/svox/pico/lib/
picopam.c 178 picoos_uint8 sType; /*Sentence type*/
    [all...]
  /external/pdfium/fpdfsdk/src/
fsdk_annothandler.cpp 127 IPDFSDK_AnnotHandler* CPDFSDK_AnnotHandlerMgr::GetAnnotHandler(const CFX_ByteString& sType) const
130 m_mapType2Handler.Lookup(sType, pRet);

Completed in 1535 milliseconds

1 2