Home
last modified time | relevance | path

Searched refs:secs (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dtimemodule.c130 double secs; in time_time() local
131 secs = floattime(); in time_time()
132 if (secs == 0.0) { in time_time()
136 return PyFloat_FromDouble(secs); in time_time()
203 double secs; in time_sleep() local
204 if (!PyArg_ParseTuple(args, "d:sleep", &secs)) in time_sleep()
206 if (floatsleep(secs) != 0) in time_sleep()
924 time_t secs; in floattime()
925 time(&secs); in floattime()
926 return (double)secs; in floattime()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dtimemodule.c130 double secs; in time_time() local
131 secs = floattime(); in time_time()
132 if (secs == 0.0) { in time_time()
136 return PyFloat_FromDouble(secs); in time_time()
203 double secs; in time_sleep() local
204 if (!PyArg_ParseTuple(args, "d:sleep", &secs)) in time_sleep()
206 if (floatsleep(secs) != 0) in time_sleep()
919 time_t secs; in floattime()
920 time(&secs); in floattime()
921 return (double)secs; in floattime()
[all …]
/device/linaro/bootloader/arm-trusted-firmware/plat/hikey/drivers/
Dhisi_mcu.c73 struct mcu_image_sec secs[MCU_SECTION_MAX]; member
220 if (is_binary_section_invalid(&head->secs[i], head)) { in hisi_mcu_load_image()
226 if (head->secs[i].load_attr != MCU_IMAGE_SEC_LOAD_STATIC) in hisi_mcu_load_image()
230 src = (int *)(intptr_t)(buf + head->secs[i].src_offset); in hisi_mcu_load_image()
231 dst = (int *)(intptr_t)mcu2ap_addr(head->secs[i].dst_offset); in hisi_mcu_load_image()
233 memcpy((void *)dst, (void *)src, head->secs[i].size); in hisi_mcu_load_image()
238 INFO("%s: size = %d\n", __func__, head->secs[i].size); in hisi_mcu_load_image()
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dns_ttl.c82 int secs, mins, hours, days, weeks, x; in ns_format_ttl() local
85 secs = (int)(src % 60); src /= 60; in ns_format_ttl()
108 if (secs || !(weeks || days || hours || mins)) { in ns_format_ttl()
109 T(fmt1(secs, 'S', &dst, &dstlen)); in ns_format_ttl()
Dres_debug.c637 int deg = 0, min = 0, secs = 0, secsfrac = 0; in latlon2ul() local
660 secs = secs * 10 + (*cp++ - '0'); in latlon2ul()
686 + (((((deg * 60) + min) * 60) + secs) * 1000) in latlon2ul()
692 - (((((deg * 60) + min) * 60) + secs) * 1000) in latlon2ul()
976 p_secstodate (u_long secs) { in p_secstodate() argument
978 time_t clock = (time_t)secs; in p_secstodate()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenPatchPcdTable/
DGenPatchPcdTable.py117 secs = [] # key = section name
136secs.append([int(sec_no, 16), int(sec_start, 16), int(sec_length, 16), sec_name, sec_class])
147 for sec in secs:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
Dcmptree.py37 mins, secs = divmod(dt, 60)
38 print mins, "minutes and", round(secs), "seconds"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dimaplib.py1088 def _mesg(self, s, secs=None): argument
1089 if secs is None:
1090 secs = time.time()
1091 tm = time.strftime('%M:%S', time.localtime(secs))
1092 sys.stderr.write(' %s.%02d %s\n' % (tm, (secs*100)%100, s))
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/PxeDhcp4/
DPxeDhcp4.h60 UINT16 secs; member
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMisc.py122 secs = [] # key = section name
142secs.append([int(sec_no, 16), int(sec_start, 16), int(sec_length, 16), sec_name, sec_class])
154 for sec in secs: