Searched refs:int64_t (Results 1 - 25 of 95) sorted by relevance

1234

/system/core/include/utils/
H A DSystemClock.h25 int64_t uptimeMillis();
26 int64_t elapsedRealtime();
27 int64_t elapsedRealtimeNano();
H A DLinearTransform.h41 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;
H A DLog.h52 const int64_t mStart;
/system/netd/server/
H A DBandwidthController.h33 int64_t rxB, int64_t rxP,
34 int64_t txB, int64_t txP)
42 int64_t rxBytes, rxPackets;
43 int64_t txBytes, txPackets;
59 int setInterfaceSharedQuota(const char *iface, int64_t bytes);
60 int getInterfaceSharedQuota(int64_t *bytes);
63 int setInterfaceQuota(const char *iface, int64_t bytes);
64 int getInterfaceQuota(const char *iface, int64_t *byte
[all...]
/system/bt/osi/test/
H A DAlarmTestHarness.h23 extern int64_t TIMER_INTERVAL_FOR_WAKELOCK_IN_MS;
/system/core/libsparse/
H A Dsparse_file.h24 int64_t len;
H A Doutput_file.h24 struct output_file *output_file_open_fd(int fd, unsigned int block_size, int64_t len,
27 void *priv, unsigned int block_size, int64_t len, int gz, int sparse,
33 const char *file, int64_t offset);
35 int fd, int64_t offset);
36 int write_skip_chunk(struct output_file *out, int64_t len);
H A Dbacked_block.h37 int64_t offset, unsigned int len, unsigned int block);
39 int64_t offset, unsigned int len, unsigned int block);
48 int64_t backed_block_file_offset(struct backed_block *bb);
H A Dsparse.c30 struct sparse_file *sparse_file_new(unsigned int block_size, int64_t len)
68 const char *filename, int64_t file_offset, unsigned int len,
76 int fd, int64_t file_offset, unsigned int len, unsigned int block)
136 int64_t pad;
143 write_skip_chunk(out, (int64_t)blocks * s->block_size);
152 pad = s->len - (int64_t)last_block * s->block_size;
204 int64_t *count = priv;
209 int64_t sparse_file_len(struct sparse_file *s, bool sparse, bool crc)
213 int64_t count = 0;
236 int64_t coun
[all...]
H A Doutput_file.c64 int (*skip)(struct output_file *, int64_t);
65 int (*pad)(struct output_file *, int64_t);
75 int (*write_skip_chunk)(struct output_file *out, int64_t len);
80 int64_t cur_out_ptr;
87 int64_t len;
126 static int file_skip(struct output_file *out, int64_t cnt)
139 static int file_pad(struct output_file *out, int64_t len)
198 static int gz_file_skip(struct output_file *out, int64_t cnt)
211 static int gz_file_pad(struct output_file *out, int64_t len)
273 static int callback_file_skip(struct output_file *out, int64_t of
[all...]
/system/bt/embdrv/sbc/encoder/include/
H A Dsbc_types.h44 typedef int64_t SINT64;
52 typedef int64_t SINT64;
/system/core/libutils/
H A DSystemClock.cpp46 int64_t uptimeMillis()
48 int64_t when = systemTime(SYSTEM_TIME_MONOTONIC);
49 return (int64_t) nanoseconds_to_milliseconds(when);
55 int64_t elapsedRealtime()
72 static inline void checkTimeStamps(int64_t timestamp,
73 int64_t volatile *prevTimestampPtr,
79 * gettid, and int64_t is different on the ARM platform
82 int64_t prevTimestamp = *prevTimestampPtr;
109 int64_t elapsedRealtimeNano()
114 int64_t timestam
[all...]
H A DLinearTransform.cpp113 int64_t val,
114 int64_t basis1,
118 int64_t basis2,
119 int64_t* out) {
157 if (ABS(basis2) <= static_cast<int64_t>(scaled & INT64_MAX))
187 bool LinearTransform::doForwardTransform(int64_t a_in, int64_t* b_out) const {
200 bool LinearTransform::doReverseTransform(int64_t b_in, int64_t* a_out) const {
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
H A Dtypes.h23 typedef int64_t s64;
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
H A Dtypes.h11 typedef int64_t s64;
/system/extras/timeinfo/
H A Dtimeinfo.cpp30 int64_t realtime, uptime;
31 int64_t awaketime, sleeptime;
/system/core/fingerprintd/
H A DIFingerprintDaemonCallback.h42 virtual status_t onEnrollResult(int64_t devId, int32_t fpId, int32_t gpId, int32_t rem) = 0;
43 virtual status_t onAcquired(int64_t devId, int32_t acquiredInfo) = 0;
44 virtual status_t onAuthenticated(int64_t devId, int32_t fingerId, int32_t groupId) = 0;
45 virtual status_t onError(int64_t devId, int32_t error) = 0;
46 virtual status_t onRemoved(int64_t devId, int32_t fingerId, int32_t groupId) = 0;
47 virtual status_t onEnumerate(int64_t devId, const int32_t* fpIds, const int32_t* gpIds,
H A DIFingerprintDaemonCallback.cpp33 virtual status_t onEnrollResult(int64_t devId, int32_t fpId, int32_t gpId, int32_t rem) {
43 virtual status_t onAcquired(int64_t devId, int32_t acquiredInfo) {
51 virtual status_t onAuthenticated(int64_t devId, int32_t fpId, int32_t gpId) {
60 virtual status_t onError(int64_t devId, int32_t error) {
68 virtual status_t onRemoved(int64_t devId, int32_t fpId, int32_t gpId) {
77 virtual status_t onEnumerate(int64_t devId, const int32_t* fpIds, const int32_t* gpIds,
/system/bt/btcore/include/
H A Dcounter.h26 typedef int64_t counter_data_t;
/system/core/libsparse/include/sparse/
H A Dsparse.h42 struct sparse_file *sparse_file_new(unsigned int block_size, int64_t len);
114 const char *filename, int64_t file_offset, unsigned int len,
141 int fd, int64_t file_offset, unsigned int len, unsigned int block);
176 int64_t sparse_file_len(struct sparse_file *s, bool sparse, bool crc);
/system/core/include/cutils/
H A Dproperties.h65 ** int64_t. If the property is not set, then the default value is used.
83 int64_t property_get_int64(const char *key, int64_t default_value);
/system/core/toolbox/
H A Dbsd-compatibility.h62 int humanize_number(char *, size_t, int64_t, const char *, int, int);
63 int dehumanize_number(const char *, int64_t *);
/system/extras/ext4_utils/
H A Dext4_sb.h29 int64_t len; /* If set to 0, ask the block device for the size,
/system/core/libcutils/
H A Dtrace-host.c35 void atrace_int64_body(const char* name __unused, int64_t value __unused) { }
/system/core/healthd/
H A Dhealthd_mode_charger.cpp83 int64_t timestamp;
111 int64_t next_screen_transition;
112 int64_t next_key_check;
113 int64_t next_pwr_check;
179 static int64_t curr_time_ms(void)
345 static void update_screen_state(struct charger *charger, int64_t now)
462 int64_t now = curr_time_ms();
481 int64_t duration = now - charger->keys[code].timestamp;
482 int64_t secs = duration / 1000;
483 int64_t msec
[all...]

Completed in 415 milliseconds

1234