/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:__anon11170 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/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)",
|
/gdk/samples/bitmap-plasma-llvm/jni/ |
libplasma.c | 155 Fixed base = fixed_sin(yt1) + fixed_sin(yt2); local 169 Fixed ii = base + fixed_sin(xt1) + fixed_sin(xt2); 179 Fixed i1 = base + fixed_sin(xt1) + fixed_sin(xt2); 183 Fixed i2 = base + fixed_sin(xt1) + fixed_sin(xt2); 195 Fixed ii = base + fixed_sin(xt1) + fixed_sin(xt2);
|
/gdk/samples/quake/jni/ |
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...] |
/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...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
Helpers.java | 83 File base = null; local 87 base = storageManager.locateDestinationDirectory(mimeType, destination, 93 path = getFullPath(path, mimeType, destination, base); 100 static String getFullPath(String filename, String mimeType, int destination, File base) 114 // Split filename between base and extension 126 if (base != null) { 127 filename = base.getPath() + File.separator + filename; 347 * If the filename coming in is [base].[ext], the generated filenames are 348 * [base]-[sequence].[ext].
|
StorageManager.java | 295 File base = new File(mExternalStorageDir.getPath() + Constants.DEFAULT_DL_SUBDIR); local 296 if (!base.isDirectory() && !base.mkdir()) { 300 "unable to create external downloads directory " + base.getPath()); 302 return base;
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/cp/ |
name-lookup.h | 63 /* True if NODE->value is from a base class of the class which is 149 cxx_binding base; 206 declared in the class or its base classes. */ 147 cxx_binding base; local
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/ |
name-lookup.h | 63 /* True if NODE->value is from a base class of the class which is 146 cxx_binding base; 212 declared in the class or its base classes. */ 144 cxx_binding base; member in struct:cp_class_binding
|