HomeSort by relevance Sort by last modified time
    Searched defs:Elem (Results 1 - 5 of 5) sorted by null

  /external/skia/include/xml/
SkXMLWriter.h 31 void startElement(const char elem[]);
32 void startElementLen(const char elem[], size_t length);
38 virtual void onStartElementLen(const char elem[], size_t length) = 0;
42 struct Elem {
46 void doEnd(Elem* elem);
48 Elem* getEnd();
50 SkTDArray<Elem*> fElems;
65 virtual void onStartElementLen(const char elem[], size_t length);
77 virtual void onStartElementLen(const char elem[], size_t length)
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_getbits.cpp 116 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
129 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
135 returnValue = (((uint32)(Elem)) << 24) |
164 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
170 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
174 returnValue = (((uint16)(Elem)) << 8) |
200 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
207 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
212 returnValue = (((uint32)(Elem)) << 16) |
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 143 Constant *Elem[2] = {
166 dtors.push_back(ConstantStruct::get(GlobalDtorElemTy, Elem));
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 197 QualType Elem = E->getType()->getAs<ComplexType>()->getElementType();
198 llvm::Constant *Null = llvm::Constant::getNullValue(CGF.ConvertType(Elem));
203 QualType Elem = E->getType()->getAs<ComplexType>()->getElementType();
205 llvm::Constant::getNullValue(CGF.ConvertType(Elem));
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]

Completed in 331 milliseconds