/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/ |
armCOMM_Bitstream.c | 171 * Returns : Code Book Index if successfull. 185 OMX_INT Index; 194 for (Index=0; pCodeBook->codeLen != 0; Index++) 202 return Index;
|
/frameworks/compile/slang/ |
slang_rs_export_func.cpp | 146 unsigned Index = 0; 148 FE = ERT->fields_end(); FI != FE; FI++, Index++) { 152 llvm::Type *T2 = ParamTy->getTypeAtIndex(Index); 160 size_t T2Offset = ParamTySL->getElementOffset(Index);
|
/external/clang/bindings/python/examples/cindex/ |
cindex-dump.py | 13 A simple command line tool for dumping a source file using the Clang Index 31 # FIXME: This is really slow. It would be nice if the index API exposed 57 from clang.cindex import Index 77 index = Index.create() 78 tu = index.parse(None, args)
|
/external/clang/include/clang/Driver/ |
ArgList.h | 185 /// getArgString - Return the input argument string at \arg Index. 186 virtual const char *getArgString(unsigned Index) const = 0; 264 /// string at \arg Index if possible. 265 const char *GetOrMakeJoinedArgString(unsigned Index, llvm::StringRef LHS, 294 virtual const char *getArgString(unsigned Index) const { 295 return ArgStrings[Index]; 306 /// MakeIndex - Get an index for the given string(s). 328 virtual const char *getArgString(unsigned Index) const { 329 return BaseArgs.getArgString(Index);
|
/external/llvm/tools/llvm-mc/ |
Disassembler.cpp | 63 uint64_t Index; 65 for (Index = 0; Index < Bytes.size(); Index += Size) { 68 if (DisAsm.getInstruction(Inst, Size, memoryObject, Index, 73 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second),
|
/external/llvm/include/llvm/CodeGen/ |
MachineFrameInfo.h | 121 /// the stack. Because fixed objects are stored at a negative index in the 122 /// Objects list, this is also the index to the 0th object in the list. 174 /// StackProtectorIdx - The frame index for the stack protector. 241 /// getStackProtectorIndex/setStackProtectorIndex - Return the index for the 259 /// getObjectIndexBegin - Return the minimum frame object index. 263 /// getObjectIndexEnd - Return one past the maximum frame object index. 274 /// mapLocalFrameObject - Map a frame index into the local object block 434 /// index with a negative value. 439 /// isFixedObjectIndex - Returns true if the specified index corresponds to a 445 /// isImmutableObjectIndex - Returns true if the specified index correspond [all...] |
MachineRelocation.h | 36 /// 6. An index into the GOT, if the target uses a GOT 62 unsigned Index; // Constant pool / jump table index 63 unsigned GOTIndex; // Index in the GOT of this symbol/global 171 Result.Target.Index = CPI; 190 Result.Target.Index = JTI; 256 /// isGOTRelative - Return true the target wants the index into the GOT of 299 /// the index into the constant pool. 302 return Target.Index; 306 /// the index into the jump table [all...] |
/external/clang/lib/CodeGen/ |
CGRecordLayout.h | 140 const AccessInfo &getComponent(unsigned Index) const { 141 assert(Index < getNumComponents() && "Invalid access!"); 142 return Components[Index]; 197 /// Map from virtual bases to their field index in the complete object. 257 /// \brief Return the LLVM field index corresponding to the given
|
CGCleanup.h | 76 /// The unwind destination index for this handler. 77 unsigned Index; 151 /// from this index onwards belong to this scope. 283 void addBranchAfter(llvm::ConstantInt *Index, 287 ExtInfo.BranchAfters.push_back(std::make_pair(Block, Index)); 335 void addEHBranchAfter(llvm::ConstantInt *Index, 339 ExtInfo.EHBranchAfters.push_back(std::make_pair(Block, Index)); 419 EHTerminateScope(unsigned Index) : EHScope(Terminate), DestIndex(Index) {}
|
/external/clang/lib/Lex/ |
PreprocessingRecord.cpp | 103 void PreprocessingRecord::SetPreallocatedEntity(unsigned Index, 105 assert(Index < NumPreallocatedEntities &&"Out-of-bounds preallocated entity"); 106 PreprocessedEntities[Index] = Entity;
|
/external/llvm/include/llvm/ADT/ |
ArrayRef.h | 129 const T &operator[](size_t Index) const { 130 assert(Index < Length && "Invalid index!"); 131 return Data[Index];
|
/frameworks/base/media/libeffects/lvm/lib/Reverb/src/ |
LVREV_ApplyNewSettings.c | 378 LVM_INT32 Index=0; 408 Index=i; 414 if(RoomSize==LVREV_GainPolyTable[Index][0]) 419 Coefs[i-1]=LVREV_GainPolyTable[Index][i]; 431 Tot_Dist=LVREV_GainPolyTable[Index][0]-LVREV_GainPolyTable[Index-1][0]; 432 Dist=RoomSize-LVREV_GainPolyTable[Index-1][0]; 438 Coefs[i-1]=LVREV_GainPolyTable[Index-1][i]; 447 Coefs[i-1]=LVREV_GainPolyTable[Index][i]; 472 Index=((32767*100)/(100+pPrivate->NewParams.Level)) [all...] |
/external/chromium/base/win/ |
registry.h | 49 LONG ReadName(int index, std::wstring* name) const; 121 int Index() const { return index_; } 130 // Current index of the iteration. 158 int Index() const { return index_; } 167 // Current index of the iteration.
|
/external/llvm/bindings/ocaml/target/ |
target_ocaml.c | 107 value Index) { 108 return caml_copy_int64(LLVMOffsetOfElement(TD, Ty, Int_val(Index)));
|
/external/llvm/lib/Target/MBlaze/ |
MBlazeMachineFunction.h | 50 /// call. A reference to its stack location and frame index must be kept 165 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
|
/external/llvm/tools/macho-dump/ |
macho-dump.cpp | 69 static int DumpSectionData(MachOObject &Obj, unsigned Index, StringRef Name, 76 outs() << " # Section " << Index << "\n"; 201 unsigned Index, uint32_t StringIndex, 204 outs() << " # Symbol " << Index << "\n"; 306 << format("0x%x", ISTE->Index) << "),),\n"; 313 static int DumpLoadCommand(MachOObject &Obj, unsigned Index) { 314 const MachOObject::LoadCommandInfo &LCI = Obj.getLoadCommandInfo(Index); 317 outs() << " # Load Command " << Index << "\n"
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentSkipListMap.java | 55 * <a href="{@docRoot}/../technotes/guides/collections/index.html"> 69 * list in which the index levels are represented in separate 74 * for the heavily-traversed index lists than can be used for the 76 * possible list with 2 levels of index: 78 * Head nodes Index nodes 195 * Index levels are maintained as lists with volatile next fields, 196 * using CAS to link and unlink. Races are allowed in index-list 197 * operations that can (rarely) fail to link in a new index node 199 * However, even when this happens, the index lists remain sorted, 207 * The fact that retries (for both base and index lists) ar [all...] |
/external/libnfc-nxp/src/ |
phLibNfc_ndef_raw.c | [all...] |
/external/clang/lib/Sema/ |
SemaTemplateVariadic.cpp | 450 /// \brief Retrieve the depth and index of a parameter pack. 477 // Compute the depth and index for this parameter pack. 478 unsigned Depth = 0, Index = 0; 485 Index = TTP->getIndex(); 492 llvm::tie(Depth, Index) = getDepthAndIndex(ND); 516 // If we don't have a template argument at this depth/index, then we 520 !TemplateArgs.hasTemplateArgument(Depth, Index)) { 526 NewPackSize = TemplateArgs(Depth, Index).pack_size(); 538 if (PartialDepth == Depth && PartialIndex == Index) 579 // Compute the depth and index for this parameter pack [all...] |
/build/tools/droiddoc/templates-sdk/ |
customizations.cs | 47 <div id="index-links"><nobr> 48 <a href="<?cs var:toroot ?>reference/packages.html" <?cs if:(page.title == "Package Index") ?>class="selected"<?cs /if ?> >Package Index</a> | 49 <a href="<?cs var:toroot ?>reference/classes.html" <?cs if:(page.title == "Class Index") ?>class="selected"<?cs /if ?>>Class Index</a></nobr> 82 <div id="index-links"><nobr> 83 <a href="<?cs var:toroot ?>reference/packages.html" <?cs if:(page.title == "Package Index") ?>class="selected"<?cs /if ?> >Package Index</a> | 84 <a href="<?cs var:toroot ?>reference/classes.html" <?cs if:(page.title == "Class Index") ?>class="selected"<?cs /if ?>>Class Index</a></nobr [all...] |
/external/clang/include/clang/Lex/ |
PreprocessingRecord.h | 327 /// \brief Set the preallocated entry at the given index to the given 329 void SetPreallocatedEntity(unsigned Index, PreprocessedEntity *Entity); 334 /// \brief Retrieve the preprocessed entity at the given index. 335 PreprocessedEntity *getPreprocessedEntity(unsigned Index) { 336 assert(Index < PreprocessedEntities.size() && 338 return PreprocessedEntities[Index];
|
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/ |
parseDiffWithMockFiles.pl | 32 index 0000000..756e864 40 index 756e864..04d2ae1 100644 47 Index: Makefile 48 index 756e864..04d2ae1 100644 55 Index: Makefile 57 index 0000000..756e864 64 Index: Makefile 72 Index: Makefile
|
/frameworks/compile/libbcc/lib/CodeGen/ |
CodeEmitter.h | 207 // Return the address of the @Index entry in the constant pool that was 209 virtual uintptr_t getConstantPoolEntryAddress(unsigned Index) const { 210 bccAssert(Index < mpConstantPool->getConstants().size() && 211 "Invalid constant pool index!"); 212 return mConstPoolAddresses[Index]; 215 // Return the address of the jump table with index @Index in the function 217 virtual uintptr_t getJumpTableEntryAddress(unsigned Index) const;
|
/external/clang/include/clang/Sema/ |
Initialization.h | 119 /// index of the array or vector element being initialized. 120 unsigned Index; 147 InitializedEntity(ASTContext &Context, unsigned Index, 244 unsigned Index, 246 return InitializedEntity(Context, Index, Parent); 314 /// element, sets the element index. 315 void setElementIndex(unsigned Index) { 317 this->Index = Index; [all...] |
/external/llvm/lib/MC/ |
ELFObjectWriter.cpp | 152 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ? 159 String16(*SymtabF, Index); // st_shndx 168 String16(*SymtabF, Index); // st_shndx 280 // The string table must be emitted first because we need the index 399 int Index = 0; 426 Index = F->getParent()->getOrdinal() + 1; 435 Index = -1; 452 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend); 519 unsigned Index = 1; 526 SectionIndexMap[&Section] = Index++ [all...] |