Searched defs:CodeBlock (Results 1 - 4 of 4) sorted by relevance

/external/giflib/
H A Ddgif_lib.c645 GifByteType ** CodeBlock) {
657 return DGifGetCodeNext(GifFile, CodeBlock);
667 GifByteType ** CodeBlock) {
678 *CodeBlock = Private->Buf; /* Use private unused buffer. */
679 (*CodeBlock)[0] = Buf; /* Pascal strings notation (pos. 0 is len.). */
680 if (READ(GifFile, &((*CodeBlock)[1]), Buf) != Buf) {
685 *CodeBlock = NULL;
889 GifByteType *CodeBlock; local
904 if (DGifGetCodeNext(GifFile, &CodeBlock) == GIF_ERROR)
906 } while (CodeBlock !
643 DGifGetCode(GifFileType * GifFile, int *CodeSize, GifByteType ** CodeBlock) argument
666 DGifGetCodeNext(GifFileType * GifFile, GifByteType ** CodeBlock) argument
[all...]
/external/webkit/Source/JavaScriptCore/interpreter/
H A DRegisterFile.h103 CodeBlock = -1, enumerator in enum:JSC::RegisterFile::CallFrameHeaderEntry
/external/webkit/Source/JavaScriptCore/bytecode/
H A DCodeBlock.cpp31 #include "CodeBlock.h"
83 CString CodeBlock::registerName(ExecState* exec, int r) const
141 void CodeBlock::printUnaryOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
149 void CodeBlock::printBinaryOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
157 void CodeBlock::printConditionalJump(ExecState* exec, const Vector<Instruction>::const_iterator&, Vector<Instruction>::const_iterator& it, int location, const char* op) const
164 void CodeBlock::printGetByIdOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
173 void CodeBlock::printPutByIdOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
279 void CodeBlock::printStructure(const char* name, const Instruction* vPC, int operand) const
285 void CodeBlock::printStructures(const Instruction* vPC) const
331 void CodeBlock
1362 CodeBlock::CodeBlock(ScriptExecutable* ownerExecutable, CodeType codeType, JSGlobalObject *globalObject, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset, SymbolTable* symTab, bool isConstructor) function in class:JSC::CodeBlock
[all...]
H A DCodeBlock.h53 // 0x40000000-0x7FFFFFFF Positive indices from 0x40000000 specify entries in the constant pool on the CodeBlock.
202 class CodeBlock { class in namespace:JSC
206 CodeBlock(ScriptExecutable* ownerExecutable, CodeType, JSGlobalObject*, PassRefPtr<SourceProvider>, unsigned sourceOffset, SymbolTable* symbolTable, bool isConstructor);
212 virtual ~CodeBlock();
568 class GlobalCodeBlock : public CodeBlock {
571 : CodeBlock(ownerExecutable, codeType, globalObject, sourceProvider, sourceOffset, &m_unsharedSymbolTable, false)
610 class FunctionCodeBlock : public CodeBlock {
613 // as we need to initialise the CodeBlock before we could initialise any RefPtr to hold the shared
617 : CodeBlock(ownerExecutable, codeType, globalObject, sourceProvider, sourceOffset, SharedSymbolTable::create().leakRef(), isConstructor)
628 CodeBlock* codeBloc
[all...]

Completed in 112 milliseconds