HomeSort by relevance Sort by last modified time
    Searched refs:base (Results 201 - 225 of 2027) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
njd.h 60 #define CALCULATE_HINDO(freq, base, high, div) \
61 ((NJ_HINDO)((((freq) * ((high) - (base))) / (div)) + (base)))
  /external/webkit/JavaScriptCore/assembler/
X86Assembler.h 287 void push_m(int offset, RegisterID base)
289 m_formatter.oneByteOp(OP_GROUP5_Ev, GROUP5_OP_PUSH, base, offset);
292 void pop_m(int offset, RegisterID base)
294 m_formatter.oneByteOp(OP_GROUP1A_Ev, GROUP1A_OP_POP, base, offset);
317 void addl_mr(int offset, RegisterID base, RegisterID dst)
319 m_formatter.oneByteOp(OP_ADD_GvEv, dst, base, offset);
322 void addl_rm(RegisterID src, int offset, RegisterID base)
324 m_formatter.oneByteOp(OP_ADD_EvGv, src, base, offset);
338 void addl_im(int imm, int offset, RegisterID base)
341 m_formatter.oneByteOp(OP_GROUP1_EvIb, GROUP1_OP_ADD, base, offset)
    [all...]
  /external/chromium/base/
sha1_unittest.cc 5 #include "base/sha1.h"
9 #include "base/basictypes.h"
22 std::string output = base::SHA1HashString(input);
23 for (size_t i = 0; i < base::SHA1_LENGTH; i++)
38 std::string output = base::SHA1HashString(input);
39 for (size_t i = 0; i < base::SHA1_LENGTH; i++)
53 std::string output = base::SHA1HashString(input);
54 for (size_t i = 0; i < base::SHA1_LENGTH; i++)
directory_watcher.h 10 #include "base/basictypes.h"
11 #include "base/ref_counted.h"
47 class PlatformDelegate : public base::RefCounted<PlatformDelegate> {
53 friend class base::RefCounted<PlatformDelegate>;
trace_event.cc 5 #include "base/trace_event.h"
7 #include "base/format_macros.h"
8 #include "base/file_path.h"
9 #include "base/file_util.h"
10 #include "base/path_service.h"
11 #include "base/platform_thread.h"
12 #include "base/process_util.h"
13 #include "base/string_util.h"
14 #include "base/utf_string_conversions.h"
15 #include "base/time.h
19 namespace base { namespace
    [all...]
  /external/chromium/net/base/
transport_security_state_unittest.cc 5 #include "net/base/transport_security_state.h"
135 const base::Time current_time(base::Time::Now());
136 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000);
148 const base::Time current_time(base::Time::Now());
149 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000);
161 const base::Time current_time(base::Time::Now())
    [all...]
address_list.h 8 #include "base/ref_counted.h"
54 struct Data : public base::RefCountedThreadSafe<Data> {
63 friend class base::RefCountedThreadSafe<Data>;
host_cache.cc 5 #include "net/base/host_cache.h"
7 #include "base/logging.h"
8 #include "net/base/net_errors.h"
16 base::TimeTicks expiration)
26 base::TimeDelta success_entry_ttl,
27 base::TimeDelta failure_entry_ttl)
37 base::TimeTicks now) const {
55 base::TimeTicks now) {
59 base::TimeTicks expiration = now +
83 bool HostCache::CanUseEntry(const Entry* entry, const base::TimeTicks now)
    [all...]
ssl_client_auth_cache_unittest.cc 5 #include "net/base/ssl_client_auth_cache.h"
7 #include "base/time.h"
15 base::Time start_date = base::Time::Now();
16 base::Time expiration_date = start_date + base::TimeDelta::FromDays(1);
63 base::Time start_date = base::Time::Now();
64 base::Time expiration_date = start_date + base::TimeDelta::FromDays(1)
    [all...]
  /external/webkit/WebCore/bindings/js/
JSHTMLOptionsCollectionCustom.cpp 66 HTMLSelectElement* base = static_cast<HTMLSelectElement*>(imp->base()); local
67 selectIndexSetter(base, exec, index, value);
94 JSHTMLSelectElement* base = static_cast<JSHTMLSelectElement*>(asObject(toJS(exec, globalObject(), imp->base()))); local
95 return base->remove(exec, args);
  /frameworks/base/libs/ui/
GraphicLog.cpp 32 void writeInt32(uint8_t* base, size_t& pos, int32_t value) {
38 base[pos] = EVENT_TYPE_INT;
39 memcpy(&base[pos+1], &v, sizeof(int32_t));
44 void writeInt64(uint8_t* base, size_t& pos, int64_t value) {
50 base[pos] = EVENT_TYPE_LONG;
51 memcpy(&base[pos+1], &v, sizeof(int64_t));
  /bionic/libc/kernel/common/linux/
timer.h 28 struct tvec_t_base_s *base; member in struct:timer_list
31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
  /development/ndk/platforms/android-3/include/linux/
timer.h 28 struct tvec_t_base_s *base; member in struct:timer_list
31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
  /external/chromium/base/test/
perf_test_suite.h 8 #include "base/command_line.h"
9 #include "base/debug_util.h"
10 #include "base/file_path.h"
11 #include "base/perftimer.h"
12 #include "base/process_util.h"
13 #include "base/string_util.h"
14 #include "base/test/test_suite.h"
30 PathService::Get(base::FILE_EXE, &exe);
41 base::RaiseProcessToHighPriority();
  /external/chromium/net/disk_cache/
disk_cache.h 14 #include "base/basictypes.h"
15 #include "base/time.h"
16 #include "net/base/cache_type.h"
17 #include "net/base/completion_callback.h"
137 virtual bool DoomEntriesBetween(const base::Time initial_time,
138 const base::Time end_time) = 0;
144 virtual int DoomEntriesBetween(const base::Time initial_time,
145 const base::Time end_time,
150 virtual bool DoomEntriesSince(const base::Time initial_time) = 0;
155 virtual int DoomEntriesSince(const base::Time initial_time
    [all...]
  /external/chromium/net/ftp/
ftp_util.h 10 #include "base/string16.h"
12 namespace base { namespace
40 base::Time* time);
  /external/clearsilver/python/examples/base/
who_calls.py 100 def real_get_refcounts(base = None, set_base = 0):
110 if base:
112 base[name] = cnt
113 elif cnt > base.get(name, 0):
114 d[name] = cnt - base.get(name, 0)
119 def get_refcounts(base=None):
120 d = real_get_refcounts(base = base)
  /external/freetype/
Android.mk 17 src/base/ftbbox.c \
18 src/base/ftbitmap.c \
19 src/base/ftglyph.c \
20 src/base/ftstroke.c \
21 src/base/ftxf86.c \
22 src/base/ftbase.c \
23 src/base/ftsystem.c \
24 src/base/ftinit.c \
25 src/base/ftgasp.c \
  /external/ppp/pppd/plugins/rp-pppoe/
debug.c 40 int base; local
50 for (base=0; base<len; base += 16) {
51 for (i=base; i<base+16; i++) {
59 for (i=base; i<base+16; i++) {
  /external/qemu/android/
resource.c 18 const unsigned char* base; member in struct:__anon5872
33 return e->base;
  /external/qemu/
dma.h 19 target_phys_addr_t base; member in struct:__anon6260
31 void qemu_sglist_add(QEMUSGList *qsg, target_phys_addr_t base,
  /external/webkit/WebCore/html/canvas/
WebGLArray.cpp 54 char* base = static_cast<char*>(baseAddress()); local
55 memcpy(base + byteOffset, array->baseAddress(), array->byteLength());
  /external/webkit/WebCore/platform/
LinkHash.h 60 // base URL, and returns the hash of the string that will be used for visited
63 LinkHash visitedLinkHash(const KURL& base, const AtomicString& attributeURL);
66 // base URL, and returns the hash of the string that will be used for visited.
68 void visitedURL(const KURL& base, const AtomicString& attributeURL, Vector<UChar, 512>&);
  /frameworks/base/cmds/screencap/
screencap.cpp 31 void const* base = screenshot.getPixels(); local
39 write(fd, base, w*h*4);
  /frameworks/base/include/utils/
misc.h 88 void k_itoa(int value, char* str, int base);
89 char* itoa(int val, int base);

Completed in 1287 milliseconds

1 2 3 4 5 6 7 891011>>