Searched defs:Temp (Results 1 - 25 of 33) sorted by relevance

12

/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp12.cpp17 template <class T> class Temp { class in namespace:test1
18 static Temp<A::Public> make() { return Temp<A::Public>(); }
20 template class Temp<A::Private>;
25 template class Temp<A::Private> Temp<int>::make();
38 template <class T> class Temp { class in namespace:test2
39 static Temp<A::Public> make();
41 template <> class Temp<A::Private> { class in namespace:test2
43 Temp(in function in class:test2::Temp
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
H A Dsbc_packing.c59 UINT8 Temp; local
93 Temp=0;
100 Temp <<= 1;
101 Temp |= pstrEncParams->as16Join[s32Sb];
111 *(pu8PacketPtr++)=Temp;
112 Temp = 0;
120 /*Temp=*pu8PacketPtr;*/
123 Temp<<= 4;
124 Temp |= *ps16GenPtr++;
129 *(pu8PacketPtr++)=Temp;
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dfilter.c51 int Temp; local
57 Temp = ((int)src_ptr[-2 * (int)pixel_step] * vp8_filter[0]) +
66 Temp = Temp >> VP8_FILTER_SHIFT;
68 if (Temp < 0)
69 Temp = 0;
70 else if (Temp > 255)
71 Temp = 255;
73 output_ptr[j] = Temp;
96 int Temp; local
331 int Temp; local
[all...]
H A Dvariance_c.c261 int Temp; local
268 Temp = ((int)src_ptr[0] * vp8_filter[0]) +
271 output_ptr[j] = (unsigned int)(Temp >> VP8_FILTER_SHIFT);
295 unsigned short FData3[5*4]; /* Temp data bufffer used in filtering */
321 unsigned short FData3[9*8]; /* Temp data bufffer used in filtering */
345 unsigned short FData3[17*16]; /* Temp data bufffer used in filtering */
421 unsigned short FData3[16*9]; /* Temp data bufffer used in filtering */
445 unsigned short FData3[9*16]; /* Temp data bufffer used in filtering */
/external/libvpx/libvpx/vp8/common/
H A Dfilter.c51 int Temp; local
57 Temp = ((int)src_ptr[-2 * (int)pixel_step] * vp8_filter[0]) +
66 Temp = Temp >> VP8_FILTER_SHIFT;
68 if (Temp < 0)
69 Temp = 0;
70 else if (Temp > 255)
71 Temp = 255;
73 output_ptr[j] = Temp;
96 int Temp; local
331 int Temp; local
[all...]
H A Dvariance_c.c261 int Temp; local
268 Temp = ((int)src_ptr[0] * vp8_filter[0]) +
271 output_ptr[j] = (unsigned int)(Temp >> VP8_FILTER_SHIFT);
295 unsigned short FData3[5*4]; /* Temp data bufffer used in filtering */
321 unsigned short FData3[9*8]; /* Temp data bufffer used in filtering */
345 unsigned short FData3[17*16]; /* Temp data bufffer used in filtering */
421 unsigned short FData3[16*9]; /* Temp data bufffer used in filtering */
445 unsigned short FData3[9*16]; /* Temp data bufffer used in filtering */
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600ISelLowering.cpp398 SDValue Temp; local
458 Temp = True;
460 False = Temp;
/external/lzma/CPP/7zip/UI/Common/
H A DUpdate.h23 bool Temp; member in struct:CArchivePath
27 CArchivePath(): Temp(false) {};
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600ISelLowering.cpp398 SDValue Temp; local
458 Temp = True;
460 False = Temp;
/external/llvm/lib/IR/
H A DAutoUpgrade.cpp525 Instruction *&Temp) {
529 Temp = nullptr;
538 Temp = CastInst::Create(Instruction::PtrToInt, V, MidTy);
540 return CastInst::Create(Instruction::IntToPtr, Temp, DestTy);
524 UpgradeBitCastInst(unsigned Opc, Value *V, Type *DestTy, Instruction *&Temp) argument
/external/llvm/tools/gold/
H A Dgold-plugin.cpp464 const char *Temp; local
466 if (!CodeGen->compile_to_file(&Temp, /*DisableOpt*/ false, /*DisableInline*/
469 ObjPath = Temp;
/external/llvm/lib/AsmParser/
H A DLLParser.cpp672 MDNode *Temp = FI->second.first; local
673 Temp->replaceAllUsesWith(Init);
674 MDNode::deleteTemporary(Temp);
/external/clang/test/CodeGenCXX/
H A Dvisibility.cpp350 template <class T> struct Temp { struct in namespace:Test15
357 return Temp<A>::Inner::buffer;
1199 template <template <class T> class Temp> struct C {
/external/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp740 unsigned Temp = Reg1; local
742 Reg2 = Temp;
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscnvrt.c250 void Temp2CHAD(cmsMAT3* Chad, cmsFloat64Number Temp) argument
255 cmsWhitePointFromTemp(&ChromaticityOfWhite, Temp);
306 cmsFloat64Number TempSrc, TempDest, Temp; local
324 Temp = (1.0 - AdaptationState) * TempDest + AdaptationState * TempSrc;
327 Temp2CHAD(&MixedCHAD, Temp);
/external/clang/include/clang/AST/
H A DExprCXX.h1020 CXXTemporary *Temp; member in class:clang::CXXBindTemporaryExpr
1030 Temp(temp), SubExpr(SubExpr) { }
1034 : Expr(CXXBindTemporaryExprClass, Empty), Temp(nullptr), SubExpr(nullptr) {}
1036 static CXXBindTemporaryExpr *Create(const ASTContext &C, CXXTemporary *Temp,
1039 CXXTemporary *getTemporary() { return Temp; }
1040 const CXXTemporary *getTemporary() const { return Temp; }
1041 void setTemporary(CXXTemporary *T) { Temp = T; }
/external/clang/lib/AST/
H A DExprCXX.cpp796 CXXTemporary *Temp,
802 return new (C) CXXBindTemporaryExpr(Temp, SubExpr);
795 Create(const ASTContext &C, CXXTemporary *Temp, Expr* SubExpr) argument
H A DExprConstant.cpp75 const Expr *Temp = MTE->GetTemporaryExpr(); local
76 const Expr *Inner = Temp->skipRValueSubobjectAdjustments(CommaLHSs,
80 if (Inner != Temp)
/external/clang/lib/Analysis/
H A DConsumed.cpp494 void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *Temp);
500 void VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *Temp);
764 const CXXBindTemporaryExpr *Temp) {
766 InfoEntry Entry = findInfo(Temp->getSubExpr());
769 StateMap->setState(Temp, Entry->second.getAsState(StateMap));
770 PropagationMap.insert(PairType(Temp, PropagationInfo(Temp)));
857 const MaterializeTemporaryExpr *Temp) {
859 forwardInfo(Temp->GetTemporaryExpr(), Temp);
763 VisitCXXBindTemporaryExpr( const CXXBindTemporaryExpr *Temp) argument
856 VisitMaterializeTemporaryExpr( const MaterializeTemporaryExpr *Temp) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp1380 llvm::Value *Temp = CreateMemTemp(E->getType()); local
1381 LValue LV = MakeAddrLValue(Temp, E->getType());
/external/jhead/
H A Dexif.c1689 char Temp[20]; local
1690 FileTimeAsString(Temp);
1691 printf("File date : %s\n",Temp);
/external/llvm/lib/MC/
H A DMCDwarf.cpp432 uint64_t Temp, Opcode; local
455 Temp = LineDelta - DWARF2_LINE_BASE;
459 if (Temp >= DWARF2_LINE_RANGE) {
464 Temp = 0 - DWARF2_LINE_BASE;
475 Temp += DWARF2_LINE_OPCODE_BASE;
480 Opcode = Temp + AddrDelta * DWARF2_LINE_RANGE;
487 Opcode = Temp + (AddrDelta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
502 OS << char(Temp);
/external/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp1162 SDValue Temp; local
1249 Temp = True;
1251 False = Temp;
/external/opencv/cv/include/
H A Dcvtypes.h259 float* Temp; /* Temporary vector */ member in struct:CvConDensation
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp1389 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(), local
1392 if (!Temp) return nullptr;
1394 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
4307 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
4308 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
4310 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
4311 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);

Completed in 661 milliseconds

12