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

1 2 34 5 6

  /frameworks/compile/mclinker/lib/LD/
ELFReaderIf.cpp 45 ResolveInfo::Desc ELFReaderIF::getSymDesc(uint16_t pShndx, const Input& pInput) const
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 54 GrTextureStripAtlas* GrTextureStripAtlas::GetAtlas(const GrTextureStripAtlas::Desc& desc) {
56 key.setKeyData(desc.asKey());
61 entry->fAtlas = SkNEW_ARGS(GrTextureStripAtlas, (desc));
64 desc.fContext->addCleanUp(CleanUp, entry);
72 GrTextureStripAtlas::GrTextureStripAtlas(GrTextureStripAtlas::Desc desc)
75 , fDesc(desc)
76 , fNumRows(desc.fHeight / desc.fRowHeight
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
floatnum.pxi 33 if PyCObject_Check(value): # should check Desc
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 54 GrTextureStripAtlas* GrTextureStripAtlas::GetAtlas(const GrTextureStripAtlas::Desc& desc) {
56 key.setKeyData(desc.asKey());
61 entry->fAtlas = SkNEW_ARGS(GrTextureStripAtlas, (desc));
64 desc.fContext->addCleanUp(CleanUp, entry);
72 GrTextureStripAtlas::GrTextureStripAtlas(GrTextureStripAtlas::Desc desc)
75 , fDesc(desc)
76 , fNumRows(desc.fHeight / desc.fRowHeight
    [all...]
  /frameworks/compile/mclinker/unittests/
NamePoolTest.cpp 73 ResolveInfo::Desc desc = ResolveInfo::Define; local
82 desc,
93 EXPECT_EQ(desc, result1.info->desc());
102 desc,
113 EXPECT_EQ(desc, result1.info->desc());
125 ResolveInfo::Desc desc = ResolveInfo::Undefined local
    [all...]
  /external/llvm/lib/Target/R600/
SIInstrInfo.cpp 552 const MCInstrDesc &Desc = get(Opcode);
553 if (!Desc.isVariadic() &&
554 Desc.getNumOperands() != MI->getNumExplicitOperands()) {
560 for (unsigned i = 0, e = Desc.getNumOperands(); i != e; ++i) {
561 switch (Desc.OpInfo[i].OperandType) {
563 int RegClass = Desc.OpInfo[i].RegClass;
584 int RegClass = Desc.OpInfo[i].RegClass;
659 if (Desc.getOpcode() == AMDGPU::V_DIV_SCALE_F32 ||
660 Desc.getOpcode() == AMDGPU::V_DIV_SCALE_F64) {
737 const MCInstrDesc &Desc = get(MI.getOpcode())
    [all...]
AMDGPUISelDAGToDAG.cpp 128 const MCInstrDesc &Desc = TM.getInstrInfo()->get(N->getMachineOpcode());
129 unsigned OpIdx = Desc.getNumDefs() + OpNo;
130 if (OpIdx >= Desc.getNumOperands())
132 int RegClass = Desc.OpInfo[OpIdx].RegClass;
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL.cpp 360 GrTexture* GrGpuGL::onWrapBackendTexture(const GrBackendTextureDesc& desc) {
361 if (!this->configToGLFormats(desc.fConfig, false, NULL, NULL, NULL)) {
365 if (0 == desc.fTextureHandle) {
370 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
374 GrGLTexture::Desc glTexDesc;
376 glTexDesc.fFlags = (GrTextureFlags) desc.fFlags;
377 glTexDesc.fWidth = desc.fWidth;
378 glTexDesc.fHeight = desc.fHeight;
379 glTexDesc.fConfig = desc.fConfig
474 GrGLTexture::Desc desc; local
1291 GrGLVertexBuffer::Desc desc; local
1324 GrGLIndexBuffer::Desc desc; local
    [all...]
GrGLBufferImpl.cpp 23 GrGLBufferImpl::GrGLBufferImpl(GrGpuGL* gpu, const Desc& desc, GrGLenum bufferType)
24 : fDesc(desc)
27 if (0 == desc.fID) {
28 fCPUData = sk_malloc_flags(desc.fSizeInBytes, SK_MALLOC_THROW);
32 // We assume that the GL buffer was created at the desc's size initially.
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 387 const char *Desc) {
389 if (Desc)
390 dbgs() << " [" << Desc << "]";
  /external/clang/lib/Driver/
SanitizerArgs.cpp 228 std::string Desc =
231 << Desc << TC.getTriple().str();
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCCodeEmitter.cpp 97 const MCInstrDesc &Desc = MCII.get(Opcode);
104 unsigned Size = Desc.getSize();
  /external/llvm/lib/Target/SystemZ/
SystemZElimCompare.cpp 234 const MCInstrDesc &Desc = TII->get(Opcode);
235 unsigned MIFlags = Desc.TSFlags;
  /external/jhead/
jhead.h 174 char * Desc;
exif.c 305 if (strcmp(TagTable[i].Desc, tagName) == 0) {
306 printf("found tag %s val %d", TagTable[i].Desc, TagTable[i].Tag);
654 printf(" %s = ",TagTable[a].Desc);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEInstrInfo.cpp 444 const MCInstrDesc &Desc = get(Opc);
445 assert(Desc.NumOperands == 2 && "Unary instruction expected.");
447 unsigned DstRegSize = getRegClass(Desc, 0, RI, MF)->getSize();
448 unsigned SrcRegSize = getRegClass(Desc, 1, RI, MF)->getSize();
MipsSEFrameLowering.cpp 184 const MCInstrDesc &Desc = TII.get(TargetOpcode::COPY);
187 BuildMI(MBB, I, DL, Desc, Lo).addReg(VR0, RegState::Kill);
189 BuildMI(MBB, I, DL, Desc, Hi).addReg(VR1, RegState::Kill);
  /external/skia/src/gpu/gl/
GrGLBufferImpl.cpp 23 GrGLBufferImpl::GrGLBufferImpl(GrGpuGL* gpu, const Desc& desc, GrGLenum bufferType)
24 : fDesc(desc)
27 if (0 == desc.fID) {
28 fCPUData = sk_malloc_flags(desc.fSizeInBytes, SK_MALLOC_THROW);
32 // We assume that the GL buffer was created at the desc's size initially.
GrGpuGL.cpp 357 GrTexture* GrGpuGL::onWrapBackendTexture(const GrBackendTextureDesc& desc) {
358 if (!this->configToGLFormats(desc.fConfig, false, NULL, NULL, NULL)) {
362 if (0 == desc.fTextureHandle) {
367 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
371 GrGLTexture::Desc glTexDesc;
373 glTexDesc.fFlags = (GrTextureFlags) desc.fFlags;
374 glTexDesc.fWidth = desc.fWidth;
375 glTexDesc.fHeight = desc.fHeight;
376 glTexDesc.fConfig = desc.fConfig
471 GrGLTexture::Desc desc; local
1295 GrGLVertexBuffer::Desc desc; local
1328 GrGLIndexBuffer::Desc desc; local
    [all...]
  /external/llvm/include/llvm/Support/
TargetRegistry.h     [all...]
  /external/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 29 cl::desc("Use old-style Thumb2 if-conversion heuristics"),
441 const MCInstrDesc &Desc = MI.getDesc();
442 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCCodeEmitter.cpp 143 /// Size the instruction with Desc.getSize().
190 const MCInstrDesc &Desc = MCII.get(TmpInst.getOpcode());
193 unsigned Size = Desc.getSize();
195 llvm_unreachable("Desc.getSize() returns 0");
  /development/build/tools/
mk_sdk_repo_xml.sh 101 Pkg.Desc description 1
  /external/llvm/lib/CodeGen/
LexicalScopes.cpp 339 const MDNode *N = Desc;
  /frameworks/compile/mclinker/include/mcld/Target/
GNULDBackend.h 280 virtual ResolveInfo::Desc getSymDesc(uint16_t pShndx) const {

Completed in 437 milliseconds

1 2 34 5 6