HomeSort by relevance Sort by last modified time
    Searched defs:nsec (Results 26 - 42 of 42) sorted by null

12

  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/
ktime.h 23 s32 sec, nsec; member in struct:__anon35521::__anon35522
25 s32 nsec, sec;
  /external/kernel-headers/original/linux/
ktime.h 51 s32 sec, nsec; member in struct:__anon7962::__anon7963
53 s32 nsec, sec;
130 * that the tv.sec field is negative and the tv.nsec field is greater
134 * tv.sec < 0 and 0 >= tv.nsec < NSEC_PER_SEC
137 /* Set a ktime_t variable to a value in sec/nsec representation: */
140 return (ktime_t) { .tv = { .sec = secs, .nsec = nsecs } };
155 if (res.tv.nsec < 0)
156 res.tv.nsec += NSEC_PER_SEC;
174 * performance trick: the (u32) -NSEC gives 0x00000000Fxxxxxxx
178 * tv.nsec -= NSEC_PER_SE
    [all...]
jiffies.h 58 /* TICK_NSEC is the time between ticks in nsec assuming real ACTHZ */
66 /* TICK_USEC_TO_NSEC is the time between ticks in nsec assuming real ACTHZ and */
304 * nsec -= nsec % TICK_NSEC; is NOT a correct resolution rounding.
308 * The >> (NSEC_JIFFIE_SC - SEC_JIFFIE_SC) converts the scaled nsec
315 long nsec = value->tv_nsec + TICK_NSEC - 1; local
319 nsec = 0;
322 (((u64)nsec * NSEC_CONVERSION) >>
334 u64 nsec = (u64)jiffies * TICK_NSEC; local
335 value->tv_sec = div_long_long_rem(nsec, NSEC_PER_SEC, &value->tv_nsec)
372 u64 nsec = (u64)jiffies * TICK_NSEC; local
    [all...]
  /external/regex-re2/util/
benchmark.cc 27 static int64 nsec() { function
45 ns += nsec() - t0;
51 t0 = nsec();
70 t0 = nsec();
80 ns += nsec() - t0;
  /frameworks/av/services/audioflinger/
MonoPipe.cpp 129 long nsec = nowTs.tv_nsec - mWriteTs.tv_nsec; local
130 if (nsec < 0) {
132 nsec += 1000000000;
135 if ((long) ns > nsec) {
136 ns -= nsec;
  /system/core/include/cutils/
logger.h 26 int32_t nsec; /* nanoseconds */ member in struct:logger_entry
41 int32_t nsec; /* nanoseconds */ member in struct:logger_entry_v2
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
LogReceiver.java 47 public int nsec; field in class:LogReceiver.LogEntry
238 entry.nsec = ArrayHelper.swap32bitFromArray(data, offset);
EventContainer.java 174 public int nsec; /* nanoseconds */ field in class:EventContainer
192 nsec = entry.nsec;
198 EventContainer(int tag, int pid, int tid, int sec, int nsec, Object data) {
206 this.nsec = nsec;
EventLogParser.java 310 int nsec = milliseconds * 1000000; local
338 event = new GcEventContainer(tagValue, pid, -1 /* tid */, sec, nsec, data);
340 event = new EventContainer(tagValue, pid, -1 /* tid */, sec, nsec, data);
  /external/blktrace/
blkparse_fmt.c 89 unsigned long nsec; local
92 nsec = abs_start_time.tv_nsec + NANO_SECONDS(timestamp);
93 if (nsec >= 1000000000) {
94 nsec -= 1000000000;
104 nsec / 1000);
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 495 long nsec = ts.tv_nsec - pContext->mBufferUpdateTime.tv_nsec; local
496 if (nsec < 0) {
498 nsec += 1000000000;
500 deltaMs = secs * 1000 + nsec / 1000000;
  /external/libsepol/src/
module.c 356 uint32_t *buf = NULL, nsec; local
380 nsec = *sections = le32_to_cpu(buf[2]);
382 if (nsec > MAXSECTIONS) {
384 nsec);
388 off = (size_t *) malloc((nsec + 1) * sizeof(size_t));
395 buf = malloc(sizeof(uint32_t) * nsec);
400 rc = next_entry(buf, file, sizeof(uint32_t) * nsec);
406 for (i = 0; i < nsec; i++) {
416 off[nsec] = policy_file_length(file);
417 if (nsec && off[nsec] < off[nsec-1])
444 uint32_t buf[1], nsec; local
630 uint32_t buf[5], len, nsec; local
855 uint32_t buf[5], offsets[5], len, nsec = 0; local
    [all...]
  /external/openssl/apps/
ocsp.c 104 STACK_OF(OCSP_CERTID) *ids, long nsec,
148 long nsec = MAX_VALIDITY_PERIOD, maxage = -1; local
361 nsec = atol(*args);
362 if (nsec < 0)
895 if (!print_ocsp_summary(out, bs, req, reqnames, ids, nsec, maxage))
989 STACK_OF(OCSP_CERTID) *ids, long nsec,
1019 if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage))
    [all...]
  /external/elfutils/src/
ldgeneric.c 6273 Elf32_Word nsec = 0; local
    [all...]
  /external/mdnsresponder/mDNSCore/
mDNS.c 2363 AuthRecord nsec; local
    [all...]
mDNSEmbeddedAPI.h 844 rdataNSEC nsec; member in union:__anon9598
861 rdataNSEC nsec; member in union:__anon9599
    [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 1515 milliseconds

12