/external/genext2fs/ |
depcomp | 287 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 293 # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. 297 # compilations output dependencies in in $dir.libs/$base.o.d and 298 # in $dir$base.o.d. We have to check for both files, because 300 # $dir$base.o.d over $dir.libs/$base.o.d because the latter is 303 tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 304 tmpdepfile2=$dir$base.o.d # libtool 1.5 305 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 306 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-50 [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...] |
/external/quake/quake/src/QW/client/ |
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/webkit/Source/JavaScriptCore/bytecompiler/ |
BytecodeGenerator.h | 304 void emitCheckHasInstance(RegisterID* base); 305 RegisterID* emitInstanceOf(RegisterID* dst, RegisterID* value, RegisterID* base, RegisterID* basePrototype); 307 RegisterID* emitIn(RegisterID* dst, RegisterID* property, RegisterID* base) { return emitBinaryOp(op_in, dst, property, base, OperandTypes()); } 319 RegisterID* emitGetById(RegisterID* dst, RegisterID* base, const Identifier& property); 320 RegisterID* emitGetArgumentsLength(RegisterID* dst, RegisterID* base); 321 RegisterID* emitPutById(RegisterID* base, const Identifier& property, RegisterID* value); 322 RegisterID* emitDirectPutById(RegisterID* base, const Identifier& property, RegisterID* value); 323 RegisterID* emitDeleteById(RegisterID* dst, RegisterID* base, const Identifier&); 324 RegisterID* emitGetByVal(RegisterID* dst, RegisterID* base, RegisterID* property) [all...] |
/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/host-tools/make-3.81/config/ |
depcomp | 287 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 293 # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. 297 # compilations output dependencies in in $dir.libs/$base.o.d and 298 # in $dir$base.o.d. We have to check for both files, because 300 # $dir$base.o.d over $dir.libs/$base.o.d because the latter is 303 tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 304 tmpdepfile2=$dir$base.o.d # libtool 1.5 305 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 306 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-50 [all...] |
/external/blktrace/btt/ |
output.c | 797 void __output_ranges(FILE *ofp, struct list_head *head_p, float base) 801 float limit = base + 0.4; 805 fprintf(ofp, "%13.9lf %5.1f\n", BIT_TIME(rip->start), base); 808 fprintf(ofp, "%13.9lf %5.1f\n", BIT_TIME(rip->end), base); 813 float base) 819 __output_ranges(ofp, ®->qranges, base); 823 __output_ranges(ofp, ®->cranges, base + 0.5); 831 float base; member in struct:__od 839 if (output_regions(odp->ofp, header, &dip->regions, odp->base)) 840 odp->base += 1.0 859 float base; member in struct:__op 879 float base = 0.0; local [all...] |
/external/chromium/base/ |
message_pump_glib.cc | 5 #include "base/message_pump_glib.h" 13 #include "base/eintr_wrapper.h" 14 #include "base/logging.h" 15 #include "base/threading/platform_thread.h" 24 int GetTimeIntervalMilliseconds(const base::TimeTicks& from) { 32 ceil((from - base::TimeTicks::Now()).InMillisecondsF())); 88 base::MessagePumpForUI* pump; 125 namespace base { namespace 180 static base::PlatformThreadId thread_id = base::PlatformThread::CurrentId() [all...] |
/external/chromium/chrome/browser/history/ |
text_database.cc | 13 #include "base/file_util.h" 14 #include "base/logging.h" 15 #include "base/metrics/histogram.h" 16 #include "base/string_number_conversions.h" 17 #include "base/string_util.h" 18 #include "base/utf_string_conversions.h" 91 base::StringAppendF(&filename, FILE_PATH_LITERAL("%d-%02d"), 115 base::StringToInt(suffix.begin(), suffix.begin() + 4, &year); 116 base::StringToInt(suffix.begin() + 5, suffix.begin() + 7, &month); 205 bool TextDatabase::AddPageData(base::Time time [all...] |
/external/chromium/chrome/browser/importer/ |
firefox_importer_unittest_utils_mac.cc | 7 #include "base/base_switches.h" 8 #include "base/command_line.h" 9 #include "base/file_path.h" 10 #include "base/message_loop.h" 11 #include "base/test/test_timeouts.h" 33 const IPC::Channel& channel, base::ProcessHandle* handle) { 40 base::environment_vector env; 46 base::file_handle_mapping_vector fds_to_map; 56 return base::LaunchApp(cl.argv(), env, fds_to_map, debug_on_start, handle); 148 base::WaitForSingleProcess(child_process_, 5000) [all...] |
/external/chromium/chrome/browser/renderer_host/ |
download_resource_handler.cc | 9 #include "base/logging.h" 10 #include "base/metrics/histogram.h" 11 #include "base/metrics/stats_counters.h" 12 #include "base/stringprintf.h" 22 #include "net/base/io_buffer.h" 69 download_start_time_ = base::TimeTicks::Now(); 85 info->start_time = base::Time::Now(); 147 base::AutoLock auto_lock(buffer_->lock); 198 base::TimeTicks::Now() - download_start_time_); 221 base::AutoLock lock(buffer_->lock) [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
protocol_manager.h | 19 #include "base/gtest_prod_util.h" 20 #include "base/hash_tables.h" 21 #include "base/memory/scoped_ptr.h" 22 #include "base/time.h" 23 #include "base/timer.h" 151 base::Time last_update() const { return last_update_; } 299 void HandleGetHashError(const base::Time& now); 341 base::OneShotTimer<SafeBrowsingProtocolManager> update_timer_; 347 typedef base::hash_map<const URLFetcher*, 373 base::Time last_update_ [all...] |
/external/chromium/chrome/browser/sync/glue/ |
autofill_data_type_controller.cc | 7 #include "base/logging.h" 8 #include "base/metrics/histogram.h" 9 #include "base/task.h" 10 #include "base/time.h" 123 base::AutoLock lock(abort_association_lock_); 206 base::AutoLock lock(abort_association_lock_); 232 base::TimeTicks start_time = base::TimeTicks::Now(); 235 base::TimeTicks::Now() - start_time); 237 (base::TimeTicks::Now() - start_time).InSeconds() [all...] |
/external/chromium/net/disk_cache/ |
entry_impl.h | 9 #include "base/memory/scoped_ptr.h" 10 #include "net/base/net_log.h" 22 class EntryImpl : public Entry, public base::RefCounted<EntryImpl> { 23 friend class base::RefCounted<EntryImpl>; 122 void SetTimes(base::Time last_used, base::Time last_modified); 125 void ReportIOTime(Operation op, const base::TimeTicks& start); 142 virtual base::Time GetLastUsed() const; 143 virtual base::Time GetLastModified() const;
|
/external/chromium/net/proxy/ |
proxy_config_service_mac.cc | 10 #include "base/logging.h" 11 #include "base/mac/mac_util.h" 12 #include "base/mac/scoped_cftyperef.h" 13 #include "base/sys_string_conversions.h" 14 #include "net/base/net_errors.h" 30 CFNumberRef number = (CFNumberRef)base::mac::GetValueFromDictionary( 43 base::mac::ScopedCFTypeRef<CFDictionaryRef> config_dict( 62 CFStringRef pac_url_ref = (CFStringRef)base::mac::GetValueFromDictionary( 67 config->set_pac_url(GURL(base::SysCFStringRefToUTF8(pac_url_ref))); 132 (CFArrayRef)base::mac::GetValueFromDictionary [all...] |
proxy_script_fetcher_impl.cc | 7 #include "base/compiler_specific.h" 8 #include "base/i18n/icu_string_conversions.h" 9 #include "base/logging.h" 10 #include "base/message_loop.h" 11 #include "base/string_util.h" 12 #include "net/base/data_url.h" 13 #include "net/base/io_buffer.h" 14 #include "net/base/load_flags.h" 15 #include "net/base/net_errors.h" 57 codepage = base::kCodepageLatin1 [all...] |
/external/chromium/net/socket/ |
socks_client_socket_pool.cc | 7 #include "base/time.h" 8 #include "base/values.h" 10 #include "net/base/net_errors.h" 63 const base::TimeDelta& timeout_duration, 153 ResetTimer(base::TimeDelta::FromSeconds(kSOCKSConnectJobTimeoutInSeconds)); 213 base::TimeDelta 216 base::TimeDelta::FromSeconds(kSOCKSConnectJobTimeoutInSeconds); 228 base::TimeDelta::FromSeconds( 230 base::TimeDelta::FromSeconds(kUsedIdleSocketTimeout), 309 base::TimeDelta SOCKSClientSocketPool::ConnectionTimeout() const [all...] |
ssl_client_socket_pool.h | 11 #include "base/memory/ref_counted.h" 12 #include "base/memory/scoped_ptr.h" 13 #include "base/time.h" 14 #include "net/base/host_resolver.h" 15 #include "net/base/ssl_config_service.h" 43 class SSLSocketParams : public base::RefCounted<SSLSocketParams> { 78 friend class base::RefCounted<SSLSocketParams>; 102 const base::TimeDelta& timeout_duration, 171 base::TimeTicks ssl_connect_start_time_; 236 virtual base::TimeDelta ConnectionTimeout() const [all...] |
/external/chromium/net/url_request/ |
url_request.h | 13 #include "base/debug/leak_tracker.h" 14 #include "base/logging.h" 15 #include "base/memory/linked_ptr.h" 16 #include "base/memory/ref_counted.h" 17 #include "base/string16.h" 18 #include "base/threading/non_thread_safe.h" 20 #include "net/base/completion_callback.h" 21 #include "net/base/load_states.h" 22 #include "net/base/net_export.h" 23 #include "net/base/net_log.h 29 namespace base { namespace [all...] |
/external/doclava/src/com/google/doclava/ |
SampleTagInfo.java | 67 SampleTagInfo(String name, String kind, String text, ContainerInfo base, 70 mBase = base; 257 public void makeHDF(Data data, String base) { 258 data.setValue(base + ".name", name()); 259 data.setValue(base + ".kind", kind()); 261 data.setValue(base + ".text", mIncluded); 263 data.setValue(base + ".text", "INCLUDE_ERROR");
|
/external/e2fsprogs/lib/et/ |
error_message.c | 126 if ((et->table->base & 0xffffffL) == (table_num & 0xffffffL)) { 138 if ((et->table->base & 0xffffffL) == (table_num & 0xffffffL)) { 261 error_table_name(et->base), 282 if (el->table->base == et->base) { 291 error_table_name(et->base), 301 error_table_name(et->base),
|
/external/icu4c/test/letest/ |
sfnt.h | 87 CMAPEncodingSubtable base; member in struct:CMAPFormat0Encoding 116 CMAPEncodingSubtable base; member in struct:CMAPFormat2Encoding 144 CMAPEncodingSubtable base; member in struct:CMAPFormat4Encoding 173 CMAPEncodingSubtable base; member in struct:CMAPFormat6Encoding 215 CMAPEncodingSubtable32 base; member in struct:CMAPFormat8Encoding 235 CMAPEncodingSubtable32 base; member in struct:CMAPFormat10Encoding 254 CMAPEncodingSubtable32 base; member in struct:CMAPFormat12Encoding
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
BitmapCharacterSet.java | 43 private int base;
field in class:BitmapCharacterSet 54 oc.write(base, "base", 0);
91 base = ic.readInt("base", 0);
149 return base;
152 public void setBase(int base) {
153 this.base = base;
|
/external/qemu/ |
loadpng.c | 129 const unsigned char* base; member in struct:__anon11223 151 void *readpng(const unsigned char *base, size_t size, unsigned *_width, unsigned *_height) 174 reader.base = base; 175 reader.end = base + size; 176 reader.cursor = base; 178 if(size < 8 || png_sig_cmp((unsigned char*)base, 0, 8)) {
|