HomeSort by relevance Sort by last modified time
    Searched refs:int64_t (Results 1 - 25 of 4227) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/base/unix_file/
null_file.h 39 virtual int64_t Read(char* buf, int64_t byte_count, int64_t offset) const;
40 virtual int SetLength(int64_t new_length);
41 virtual int64_t GetLength() const;
42 virtual int64_t Write(const char* buf, int64_t byte_count, int64_t offset);
random_access_file.h 45 virtual int64_t Read(char* buf, int64_t byte_count, int64_t offset) const = 0;
51 virtual int SetLength(int64_t new_length) = 0;
54 virtual int64_t GetLength() const = 0;
60 virtual int64_t Write(const char* buf, int64_t byte_count, int64_t offset) = 0;
null_file.cc 36 int64_t NullFile::Read(char* buf, int64_t byte_count, int64_t offset) const {
43 int NullFile::SetLength(int64_t new_length) {
50 int64_t NullFile::GetLength() const {
54 int64_t NullFile::Write(const char* buf, int64_t byte_count, int64_t offset) {
string_file.h 42 virtual int64_t Read(char* buf, int64_t byte_count, int64_t offset) const;
43 virtual int SetLength(int64_t new_length);
44 virtual int64_t GetLength() const;
45 virtual int64_t Write(const char* buf, int64_t byte_count, int64_t offset);
mapped_file.h 59 bool MapReadWrite(int64_t file_size);
68 virtual int64_t Read(char* buf, int64_t byte_count, int64_t offset) const;
70 virtual int SetLength(int64_t new_length);
71 virtual int64_t GetLength() const;
75 virtual int64_t Write(const char* buf, int64_t byte_count, int64_t offset);
78 int64_t size() const
    [all...]
  /hardware/qcom/gps/msm8960/platform_lib_abstractions/
platform_lib_time.h 32 int64_t systemTime(int clock);
33 int64_t elapsedMillisSinceBoot();
  /hardware/qcom/gps/platform_lib_abstractions/
platform_lib_time.h 32 int64_t systemTime(int clock);
33 int64_t elapsedMillisSinceBoot();
  /external/qemu/tcg/
tcg-runtime.h 10 int64_t tcg_helper_shl_i64(int64_t arg1, int64_t arg2);
11 int64_t tcg_helper_shr_i64(int64_t arg1, int64_t arg2);
12 int64_t tcg_helper_sar_i64(int64_t arg1, int64_t arg2);
13 int64_t tcg_helper_div_i64(int64_t arg1, int64_t arg2)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
inter_frame_delay.h 22 VCMInterFrameDelay(int64_t currentWallClock);
25 void Reset(int64_t currentWallClock);
37 int64_t *delay,
38 int64_t currentWallClock);
54 int64_t _zeroWallClock; // Local timestamp of the first video packet received
59 int64_t _prevWallClock;
61 int64_t _dTS;
  /system/core/include/utils/
SystemClock.h 25 int64_t uptimeMillis();
26 int64_t elapsedRealtime();
27 int64_t elapsedRealtimeNano();
LinearTransform.h 41 int64_t a_zero;
42 int64_t b_zero;
49 bool doForwardTransform(int64_t a_in, int64_t* b_out) const;
54 bool doReverseTransform(int64_t b_in, int64_t* a_out) const;
  /external/compiler-rt/lib/builtins/x86_64/
floatdidf.c 11 double __floatdidf(int64_t a)
floatdisf.c 9 float __floatdisf(int64_t a)
floatdixf.c 11 long double __floatdixf(int64_t a)
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_timespec.c 48 ( ((int64_t) 27111902 << 32) + (int64_t) 3577643008 )
61 *(int64_t *) ft = ts->tv_sec * 10000000
77 (int) ((*(int64_t *) ft - PTW32_TIMESPEC_TO_FILETIME_OFFSET) / 10000000);
79 (int) ((*(int64_t *) ft - PTW32_TIMESPEC_TO_FILETIME_OFFSET -
80 ((int64_t) ts->tv_sec * (int64_t) 10000000)) * 100);
  /external/clang/test/CodeGen/
arm-asm-variable.c 4 typedef long long int64_t; typedef
7 int64_t foo(int64_t v, volatile int64_t *p)
12 int64_t r;
  /art/runtime/entrypoints/
math_entrypoints.cc 23 extern "C" double art_l2d(int64_t l) {
27 extern "C" float art_l2f(int64_t l) {
35 extern "C" int64_t art_d2l(double d) {
36 return art_float_to_integral<int64_t, double>(d);
39 extern "C" int64_t art_f2l(float f) {
40 return art_float_to_integral<int64_t, float>(f);
math_entrypoints.h 22 extern "C" double art_l2d(int64_t l);
23 extern "C" float art_l2f(int64_t l);
24 extern "C" int64_t art_d2l(double d);
26 extern "C" int64_t art_f2l(float f);
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
timestamp_extrapolator.h 23 explicit TimestampExtrapolator(int64_t start_ms);
25 void Update(int64_t tMs, uint32_t ts90khz);
26 int64_t ExtrapolateLocalTime(uint32_t timestamp90khz);
27 void Reset(int64_t start_ms);
35 int64_t _startMs;
36 int64_t _prevMs;
39 int64_t _prevUnwrappedTimestamp;
40 int64_t _prevWrapTimestamp;
clock.h 35 virtual int64_t TimeInMilliseconds() const = 0;
39 virtual int64_t TimeInMicroseconds() const = 0;
45 virtual int64_t CurrentNtpInMilliseconds() const = 0;
48 static int64_t NtpToMs(uint32_t seconds, uint32_t fractions);
56 explicit SimulatedClock(int64_t initial_time_us);
62 virtual int64_t TimeInMilliseconds() const OVERRIDE;
66 virtual int64_t TimeInMicroseconds() const OVERRIDE;
73 virtual int64_t CurrentNtpInMilliseconds() const OVERRIDE;
77 void AdvanceTimeMilliseconds(int64_t milliseconds);
78 void AdvanceTimeMicroseconds(int64_t microseconds)
    [all...]
  /external/clang/test/CodeGenCXX/
int64_uint64.cpp 9 // Test if int64_t and uint64_t can be correctly mangled.
14 void f1(int64_t a) {}
20 void f3(int64_t *ptr) {}
  /external/valgrind/main/none/tests/s390x/
cgrj.c 28 void compare_never(int64_t value1, int64_t value2)
30 register int64_t val1 asm("r7") = value1;
31 register int64_t val2 asm("r8") = value2;
44 void compare_always(int64_t value1, int64_t value2)
46 register int64_t val1 asm("r7") = value1;
47 register int64_t val2 asm("r8") = value2;
60 void compare_le(int64_t value1, int64_t value2
    [all...]
  /frameworks/native/include/diskusage/
dirsize.h 25 int64_t stat_size(struct stat *s);
26 int64_t calculate_dir_size(int dfd);
  /frameworks/base/libs/common_time/
diag_thread.h 37 void pushDisciplineEvent(int64_t observed_local_time,
38 int64_t observed_common_time,
39 int64_t nominal_common_time,
45 int64_t event_id;
46 int64_t action_local_time;
47 int64_t action_common_time;
48 int64_t observed_local_time;
49 int64_t observed_common_time;
50 int64_t nominal_common_time;
65 int64_t kernel_logID_basis_
    [all...]
  /external/chromium_org/ppapi/c/trusted/
ppb_url_loader_trusted.h 35 int64_t bytes_sent,
36 int64_t total_bytes_to_be_sent,
37 int64_t bytes_received,
38 int64_t total_bytes_to_be_received);

Completed in 717 milliseconds

1 2 3 4 5 6 7 8 91011>>