/external/llvm/include/llvm/ADT/ |
ValueMap.h | 157 return Map.erase(I.base()); 290 BaseT base() const { return I; } function in class:llvm::ValueMapIterator 338 : I(Other.base()) {} 340 BaseT base() const { return I; } function in class:llvm::ValueMapConstIterator
|
/external/llvm/include/llvm/Object/ |
ObjectFile.h | 264 /// ObjectFile - This class is the base class for all object file types. 275 const uint8_t *base() const { function in class:llvm::object::ObjectFile
|
/external/llvm/lib/Target/X86/Disassembler/ |
X86DisassemblerDecoder.c | 922 uint8_t index, base; local 978 base = baseFromSIB(insn->sib) | (bFromREX(insn->rexPrefix) << 3); 980 switch (base) { 1003 insn->sibBase = (SIBBase)(sibBaseBase + base); [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
AuthenticationHeader.java | 451 String base = "00000000"; local 452 nc = base.substring(0, 8 - nc.length()) + nc;
|
/external/openssl/crypto/objects/ |
obj_dat.c | 678 const void *OBJ_bsearch_(const void *key, const void *base, int num, int size, 681 return OBJ_bsearch_ex_(key, base, num, size, cmp, 0); 689 const char *base=base_; local 699 p= &(base[i*size]); 717 p= &(base[i*size]); 728 while(i > 0 && (*cmp)(key,&(base[(i-1)*size])) == 0) 730 p = &(base[i*size]);
|
/external/ppp/pppd/ |
utils.c | 167 int base, len, neg, quoted; local 224 base = 0; 237 base = 10; 241 base = 10; 257 base = 10; 261 base = 10; 265 base = 8; 270 base = 16; 274 base = 16; 386 if (base != 0) [all...] |
/external/qemu/hw/ |
dma.c | 40 uint16_t base[2]; member in struct:dma_regs 138 r->now[ADDR] = r->base[ADDR] << d->dshift; 165 val = (r->base[COUNT] << d->dshift) - r->now[COUNT]; 184 r->base[nreg] = (r->base[nreg] & 0xff) | ((data << 8) & 0xff00); 187 r->base[nreg] = (r->base[nreg] & 0xff00) | (data & 0xff); 350 r->now[COUNT], (r->base[COUNT] + 1) << ncont); 353 ldebug ("dma_pos %d size %d\n", n, (r->base[COUNT] + 1) << ncont); 469 static void dma_init2(struct dma_cont *d, int base, int dshift [all...] |
goldfish_events_device.c | 51 uint32_t base; member in struct:__anon12500 216 int offset = off; // - s->base; 242 int offset = off; // - s->base; 349 void events_dev_init(uint32_t base, qemu_irq irq) 518 cpu_register_physical_memory(base, 0xfff, iomemtype); 523 s->base = base;
|
/external/qemu/ |
kqemu.h | 39 uint64_t base; member in struct:kqemu_segment_cache 52 struct kqemu_segment_cache gdt; /* only base and limit are used */ 53 struct kqemu_segment_cache idt; /* only base and limit are used */
|
/external/quake/quake/src/QW/client/ |
pmove.c | 737 vec3_t base; local 742 VectorCopy (pmove.origin, base); 759 pmove.origin[0] = base[0] + (sign[x] * 1.0/8); 760 pmove.origin[1] = base[1] + (sign[y] * 1.0/8); 761 pmove.origin[2] = base[2] + (sign[z] * 1.0/8); 767 VectorCopy (base, pmove.origin);
|
zone.c | 158 memblock_t *start, *rover, *new, *base; local 171 base = rover = mainzone->rover; 172 start = base->prev; 179 base = rover = rover->next; 182 } while (base->tag || base->size < size); 187 extra = base->size - size; 190 new = (memblock_t *) ((byte *)base + size ); 193 new->prev = base; 195 new->next = base->next [all...] |
/external/quake/quake/src/WinQuake/ |
zone.cpp | 158 memblock_t *start, *rover, *newm, *base; local 171 base = rover = mainzone->rover; 172 start = base->prev; 179 base = rover = rover->next; 182 } while (base->tag || base->size < size); 187 extra = base->size - size; 190 newm = (memblock_t *) ((byte *)base + size ); 193 newm->prev = base; 195 newm->next = base->next [all...] |
/external/skia/src/core/ |
SkPictureFlat.h | 119 SkFlattenable::Factory* base() const { return fArray; } function in class:SkFactoryPlayback
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/ |
DebugInstructionIterator.java | 147 int base = ((debugOpcode & 0xFF) - 0x0A); local 148 processDebugInstruction.ProcessSpecialOpcode(startDebugOffset, debugOpcode, (base % 15) - 4, base / 15); 261 int base = ((debugOpcode & 0xFF) - 0x0A); local 262 currentCodeAddress += base / 15; 263 line += (base % 15) - 4;
|
/external/srec/tools/test_g2g/ |
test_g2g.c | 63 pfprintf(PSTDOUT,"usage: %s -base <basefilename> \n",exename); 73 int CheckG2G(CA_Arbdata* arbdata, int* p4pTable, const char* base, int wordid, char* outbase); 88 LCHAR base[P_PATH_MAX] = L(""); local 122 if(!LSTRCMP(argv[i], L("-base"))) 125 LSTRCPY(base, argv[i]); 166 if(base[0] == '@') { 167 load_filelist(base+1, &g2glist, &g2glist_len); 173 CheckG2G( ca_arbdata, p4pTable, base, wordid, outbase); 186 int CheckG2G(CA_Arbdata* ca_arbdata, int* p4pTable, const char* base, int wordid, char* outbase) 201 fp = fopen(base, "rb") [all...] |
/external/stlport/src/details/ |
fstream_win32io.cpp | 585 void* base; local 601 base = MapViewOfFile(_M_view_id, FILE_MAP_READ, li.HighPart, li.LowPart, 608 if (base == 0 || _M_seek(offset + len, ios_base::beg) < 0) { 609 this->_M_unmap(base, len); 610 base = 0; 613 base = 0; 615 return base; 618 void _Filebuf_base::_M_unmap(void* base, streamoff len) { 620 if (base != NULL) 621 UnmapViewOfFile(base); [all...] |
/external/svox/pico/lib/ |
picoknow.h | 29 * <b> Pico knowledge base </b>\n 49 /* base / tpp 1 - 7 */ 173 picoos_uint8 * base; /* start address */ member in struct:picoknow_knowledge_base
|
/external/valgrind/main/coregrind/ |
m_libcproc.c | 608 /* 'now' and 'base' are in microseconds */ 609 static ULong base = 0; local 644 if (base == 0) 645 base = now; 647 return (now - base) / 1000;
|
/external/webkit/Source/JavaScriptCore/assembler/ |
AbstractMacroAssembler.h | 71 // Describes a simple base-offset address. 73 explicit Address(RegisterID base, int32_t offset = 0) 74 : base(base) 79 RegisterID base; member in struct:JSC::AbstractMacroAssembler::Address 84 explicit ExtendedAddress(RegisterID base, intptr_t offset = 0) 85 : base(base) 90 RegisterID base; member in struct:JSC::AbstractMacroAssembler::ExtendedAddress 109 ImplicitAddress(RegisterID base) 121 RegisterID base; member in struct:JSC::AbstractMacroAssembler::ImplicitAddress 137 RegisterID base; member in struct:JSC::AbstractMacroAssembler::BaseIndex [all...] |
/external/webkit/Source/WebCore/editing/ |
SelectionController.h | 106 Position base() const { return m_selection.base(); } function in class:WebCore::SelectionController 187 enum EPositionType { START, END, BASE, EXTENT };
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
TilesManager.cpp | 53 // In our case, we use 256*256 textures. Both base and layers can use up to 58 // TODO: after merge the pool of base tiles and layer tiles, we should revisit 80 // Half of glMaxTextureSize can be used for base, the other half for layers. 159 ALOGV("allocated %d textures for base (total: %d, %d Mb), %d textures for layers (total: %d, %d Mb)", 214 bool base = textures == m_textures; local 222 int* countPtr = base ? &m_currentTextureCount : &m_currentLayerTextureCount; 225 base ? "base" : "layer", *countPtr, remainedTextureNumber); 233 max, base ? "base" : "layer") [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
test_expectations_unittest.py | 35 from webkitpy.layout_tests.port import base namespace 81 class Base(unittest.TestCase): 125 class BasicTests(Base): 134 class MiscTests(Base): 253 class ExpectationSyntaxTests(Base): 285 class SemanticTests(Base): 323 class PrecedenceTests(Base): 378 class RebaseliningTest(Base):
|
/frameworks/compile/slang/ |
slang_rs_type_spec.h | 118 struct RSTypeBase base; member in struct:RSPrimitiveType 120 // dt is encoded in base.b[1] 124 struct RSTypeBase base; member in struct:RSPointerType 129 struct RSPrimitiveType base; // base type of vec must be in primitive type member in struct:RSVectorType 131 // vsize is encoded in base.b[2] 138 struct RSTypeBase base; member in struct:RSMatrixType 142 struct RSTypeBase base; member in struct:RSConstantArrayType 145 // esize is encoded in base.bits{8-31} in little-endian way. This implicates 155 struct RSTypeBase base; member in struct:RSRecordType 166 struct RSTypeBase base; member in union:RSType [all...] |
/frameworks/native/libs/binder/ |
IMemory.cpp | 140 void* const base = realHeap->base(); local 141 if (base == MAP_FAILED) 143 return static_cast<char*>(base) + offset; 149 void* const base = heap!=0 ? heap->base() : MAP_FAILED; local 150 if (base == MAP_FAILED) 152 return static_cast<char*>(base) + offset; 471 ALOGD("hey=%p, heap=%p, count=%d, (fd=%d, base=%p, size=%d)",
|
/ndk/sources/cxx-stl/stlport/src/details/ |
fstream_win32io.cpp | 585 void* base; local 601 base = MapViewOfFile(_M_view_id, FILE_MAP_READ, li.HighPart, li.LowPart, 608 if (base == 0 || _M_seek(offset + len, ios_base::beg) < 0) { 609 this->_M_unmap(base, len); 610 base = 0; 613 base = 0; 615 return base; 618 void _Filebuf_base::_M_unmap(void* base, streamoff len) { 620 if (base != NULL) 621 UnmapViewOfFile(base); [all...] |