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/JavaScriptCore/interpreter/
H A DRegisterFile.h101 CodeBlock = -8, enumerator in enum:JSC::RegisterFile::CallFrameHeaderEntry
/external/webkit/JavaScriptCore/bytecode/
H A DCodeBlock.cpp31 #include "CodeBlock.h"
81 CString CodeBlock::registerName(ExecState* exec, int r) const
139 void CodeBlock::printUnaryOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
147 void CodeBlock::printBinaryOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
155 void CodeBlock::printConditionalJump(ExecState* exec, const Vector<Instruction>::const_iterator&, Vector<Instruction>::const_iterator& it, int location, const char* op) const
162 void CodeBlock::printGetByIdOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
171 void CodeBlock::printPutByIdOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
277 void CodeBlock::printStructure(const char* name, const Instruction* vPC, int operand) const
283 void CodeBlock::printStructures(const Instruction* vPC) const
325 void CodeBlock
1273 CodeBlock::CodeBlock(ScriptExecutable* ownerExecutable, CodeType codeType, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset, SymbolTable* symTab) 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.
113 PtrAndFlags<CodeBlock, HasSeenShouldRepatch> ownerCodeBlock;
114 CodeBlock* callee;
261 class CodeBlock : public FastAllocBase { class in namespace:JSC
264 CodeBlock(ScriptExecutable* ownerExecutable, CodeType, PassRefPtr<SourceProvider>, unsigned sourceOffset, SymbolTable* symbolTable);
266 virtual ~CodeBlock();
568 class GlobalCodeBlock : public CodeBlock {
571 : CodeBlock(ownerExecutable, codeType, sourceProvider, sourceOffset, &m_unsharedSymbolTable)
621 class FunctionCodeBlock : public CodeBlock {
624 // as we need to initialise the CodeBlock befor
[all...]

Completed in 66 milliseconds