Searched refs:sec (Results 1 - 25 of 377) sorted by relevance

1234567891011>>

/external/vboot_reference/firmware/2lib/
H A D2secdata.c16 const struct vb2_secdata *sec = local
20 if (sec->crc8 != vb2_crc8(sec, offsetof(struct vb2_secdata, crc8)))
28 struct vb2_secdata *sec = (struct vb2_secdata *)ctx->secdata; local
31 memset(sec, 0, sizeof(*sec));
34 sec->struct_version = VB2_SECDATA_VERSION;
37 sec->crc8 = vb2_crc8(sec, offsetof(struct vb2_secdata, crc8));
68 struct vb2_secdata *sec local
91 struct vb2_secdata *sec = (struct vb2_secdata *)ctx->secdata; local
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dbss_load.c22 unsigned int sec, usec; local
36 sec = ((hapd->bss_load_update_timeout / 1000) * 1024) / 1000;
38 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
47 unsigned int sec, usec; local
54 sec = ((hapd->bss_load_update_timeout / 1000) * 1024) / 1000;
56 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
/external/wpa_supplicant_8/src/ap/
H A Dbss_load.c22 unsigned int sec, usec; local
36 sec = ((hapd->bss_load_update_timeout / 1000) * 1024) / 1000;
38 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
47 unsigned int sec, usec; local
54 sec = ((hapd->bss_load_update_timeout / 1000) * 1024) / 1000;
56 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dbss_load.c22 unsigned int sec, usec; local
36 sec = ((hapd->bss_load_update_timeout / 1000) * 1024) / 1000;
38 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
47 unsigned int sec, usec; local
54 sec = ((hapd->bss_load_update_timeout / 1000) * 1024) / 1000;
56 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
/external/iproute2/examples/
H A Dcbqinit.eth121 # est 1sec 8sec means, that kernel will evaluate average rate
22 # on this class with period 1sec and time constant 8sec.
25 $TC class add dev $DEVICE parent 1:0 classid :1 est 1sec 8sec cbq \
35 $TC class add dev $DEVICE parent 1:1 classid :2 est 1sec 8sec cbq \
47 $TC class add dev $DEVICE parent 1:1 classid :3 est 2sec 16sec cb
[all...]
/external/tcpdump/
H A Dprint-timed.c51 long sec, usec; local
89 sec = EXTRACT_32BITS(&tsp->tsp_time.tv_sec);
95 if (sec < 0 && usec != 0) {
96 sec++;
97 if (sec == 0)
101 printf("%ld.%06ld", sec, usec);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h15 * os_sleep - Sleep (sec, usec)
16 * @sec: Number of seconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
22 os_time_t sec; member in struct:os_time
27 os_time_t sec; member in struct:os_reltime
32 * os_get_time - Get current time (sec, usec)
39 * os_get_reltime - Get relative time (sec, usec)
50 return (a->sec < b->sec) ||
51 (a->sec
136 int sec; /* 0..59 or 60 for leap seconds */ member in struct:os_tm
[all...]
H A Dos_win32.c17 void os_sleep(os_time_t sec, os_time_t usec) argument
19 if (sec)
20 Sleep(sec * 1000);
44 t->sec = (os_time_t) (tt / 1000000);
56 t->sec = now.sec;
62 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
70 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
71 sec > 60)
80 tm.tm_sec = sec;
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dos.h15 * os_sleep - Sleep (sec, usec)
16 * @sec: Number of seconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
22 os_time_t sec; member in struct:os_time
27 os_time_t sec; member in struct:os_reltime
32 * os_get_time - Get current time (sec, usec)
39 * os_get_reltime - Get relative time (sec, usec)
50 return (a->sec < b->sec) ||
51 (a->sec
136 int sec; /* 0..59 or 60 for leap seconds */ member in struct:os_tm
[all...]
H A Dos_win32.c17 void os_sleep(os_time_t sec, os_time_t usec) argument
19 if (sec)
20 Sleep(sec * 1000);
44 t->sec = (os_time_t) (tt / 1000000);
56 t->sec = now.sec;
62 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
70 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
71 sec > 60)
80 tm.tm_sec = sec;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h15 * os_sleep - Sleep (sec, usec)
16 * @sec: Number of seconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
22 os_time_t sec; member in struct:os_time
27 os_time_t sec; member in struct:os_reltime
32 * os_get_time - Get current time (sec, usec)
39 * os_get_reltime - Get relative time (sec, usec)
50 return (a->sec < b->sec) ||
51 (a->sec
136 int sec; /* 0..59 or 60 for leap seconds */ member in struct:os_tm
[all...]
H A Dos_win32.c17 void os_sleep(os_time_t sec, os_time_t usec) argument
19 if (sec)
20 Sleep(sec * 1000);
44 t->sec = (os_time_t) (tt / 1000000);
56 t->sec = now.sec;
62 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
70 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
71 sec > 60)
80 tm.tm_sec = sec;
[all...]
/external/skia/src/core/
H A DSkBitmapProcState.h155 #define PACK_TWO_SHORTS(pri, sec) ((pri) << 16 | (sec))
159 #define PACK_TWO_SHORTS(pri, sec) ((pri) | ((sec) << 16))
165 static inline uint32_t pack_two_shorts(U16CPU pri, U16CPU sec) { argument
167 SkASSERT((uint16_t)sec == sec);
168 return PACK_TWO_SHORTS(pri, sec);
171 #define pack_two_shorts(pri, sec) PACK_TWO_SHORTS(pri, sec)
[all...]
/external/valgrind/coregrind/
H A Dm_transtab.c208 // sec->ec2tte[ tte2ec_ec[i] ][ tte2ec_ix[i] ]
682 Bool HostExtent__is_dead (const HostExtent* hx, const Sector* sec) argument
689 hx->start, hx->len, (int)(sec - sectors), \
691 sec->tt[tteNo].entry, sec->tt[tteNo].tcptr)
694 if (sec->tt[tteNo].status == Deleted) {
704 if ((UChar*) sec->tt[tteNo].tcptr >= hx->start + hx->len) {
726 const Sector* sec = &sectors[sno]; local
727 const XArray* /* of HostExtent */ host_extents = sec->host_extents;
747 if (HostExtent__is_dead (hx, sec))
1068 addEClassNo( Sector* sec, EClassNo ec, TTEno tteno ) argument
1109 upd_eclasses_after_add( Sector* sec, TTEno tteno ) argument
1308 Sector* sec; local
1426 Sector* sec; local
1877 delete_tte( Sector* sec, SECno secNo, TTEno tteno, VexArch arch_host, VexEndness endness_host ) argument
1946 delete_translations_in_sector_eclass( Sector* sec, SECno secNo, Addr guest_start, ULong range, EClassNo ec, VexArch arch_host, VexEndness endness_host ) argument
1987 delete_translations_in_sector( Sector* sec, SECno secNo, Addr guest_start, ULong range, VexArch arch_host, VexEndness endness_host ) argument
2010 Sector* sec; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dccaltst.h79 int32_t hr, int32_t min, int32_t sec, int32_t ms,
88 int32_t hour, int32_t min, int32_t sec, int32_t am_pm);
/external/icu/icu4c/source/test/intltest/
H A Dcaltztst.h40 UDate date(int32_t y, int32_t m, int32_t d, int32_t hr=0, int32_t min=0, int32_t sec=0);
44 // Date utcDate(int y, int m, int d, int hr=0, int min=0, int sec=0);
47 void dateToFields(UDate date, int32_t& y, int32_t& m, int32_t& d, int32_t& hr, int32_t& min, int32_t& sec);
/external/valgrind/none/tests/s390x/
H A Dtest.h56 static inline void mysleep(long sec, long usec) argument
60 tv.tv_sec = sec;
/external/llvm/test/MC/ARM/
H A Ddirective-arch_extension-sec.s12 .arch_extension sec
13 @ CHECK-V6: error: architectural extension 'sec' is not allowed for the current base architecture
14 @ CHECK-V6-NEXT: .arch_extension sec
17 .type sec,%function
18 sec: label
23 @ CHECK-V6: error: architectural extension 'sec' is not allowed for the current base architecture
/external/lzma/CPP/Windows/
H A DTime.h16 unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds);
/external/strace/
H A Dptp.c58 (int64_t)perout.start.sec, perout.start.nsec,
59 (int64_t)perout.period.sec, perout.period.nsec,
87 (int64_t)sysoff.ts[0].sec, sysoff.ts[0].nsec);
90 (int64_t)sysoff.ts[i].sec, sysoff.ts[i].nsec);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dscan.h13 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
15 int sec, int usec);
38 void wpa_supplicant_update_scan_int(struct wpa_supplicant *wpa_s, int sec);
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationRootElements.java248 int previousSec, sec;
253 sec = (int)(elements[index] >> 16);
257 sec = (int)getFirstSecTerForPrimary(index) >>> 16;
259 assert(s >= sec);
260 while(s > sec) {
261 previousSec = sec;
263 sec = (int)(elements[index++] >> 16);
265 assert(sec == s);
362 // If this is an explicit sec/ter unit, then it will be read once more.
367 int sec
[all...]
/external/elfutils/src/src/
H A Dunstrip.c943 const struct section *sec = &sections[i];
944 if (sec->shdr.sh_type == SHT_PROGBITS
945 && !(sec->shdr.sh_flags & SHF_ALLOC)
946 && !strcmp (sec->name, ".gnu.prelink_undo"))
948 undo = sec->scn;
1017 struct section *sec = &undo_sections[undo_nalloc];
1020 #define COPY(field) sec->shdr.field = shdr.s32[i].field
1034 sec->shdr = shdr.s64[i];
1035 if (sec->shdr.sh_flags & SHF_ALLOC)
1037 sec
941 const struct section *sec = &sections[i]; local
1015 struct section *sec = &undo_sections[undo_nalloc]; local
1073 struct section *sec = find_alloc_section (shdr, 0, name, local
1107 struct section *sec = &sections[j]; local
1287 struct section *sec = &sections[i]; local
1328 struct section *sec = NULL; local
[all...]
/external/v8/src/
H A Ddate.js48 function MakeTime(hour, min, sec, ms) {
51 if (!$isFinite(sec)) return NAN;
55 + TO_INTEGER(sec) * msPerSecond
484 function DateSetSeconds(sec, ms) {
486 sec = ToNumber(sec);
488 var time = MakeTime(LOCAL_HOUR(this), LOCAL_MIN(this), sec, ms);
494 function DateSetUTCSeconds(sec, ms) {
496 sec = ToNumber(sec);
[all...]
/external/linux-tools-perf/src/tools/perf/scripts/python/
H A Dnetdev-times.py227 def irq__softirq_entry(name, context, cpu, sec, nsec, pid, comm, vec):
230 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
233 def irq__softirq_exit(name, context, cpu, sec, nsec, pid, comm, vec):
236 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
239 def irq__softirq_raise(name, context, cpu, sec, nsec, pid, comm, vec):
242 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
245 def irq__irq_handler_entry(name, context, cpu, sec, nsec, pid, comm,
247 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
251 def irq__irq_handler_exit(name, context, cpu, sec, nsec, pid, comm, irq, ret):
252 event_info = (name, context, cpu, nsecs(sec, nse
[all...]

Completed in 804 milliseconds

1234567891011>>