Searched refs:stm (Results 1 – 6 of 6) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | loslib.c | 198 struct tm tmr, *stm; in os_date() local 200 stm = l_gmtime(&t, &tmr); in os_date() 204 stm = l_localtime(&t, &tmr); in os_date() 205 if (stm == NULL) /* invalid date? */ in os_date() 209 setfield(L, "sec", stm->tm_sec); in os_date() 210 setfield(L, "min", stm->tm_min); in os_date() 211 setfield(L, "hour", stm->tm_hour); in os_date() 212 setfield(L, "day", stm->tm_mday); in os_date() 213 setfield(L, "month", stm->tm_mon+1); in os_date() 214 setfield(L, "year", stm->tm_year+1900); in os_date() [all …]
|
/device/linaro/bootloader/arm-trusted-firmware/include/lib/aarch32/ |
D | smcc_macros.S | 21 stm sp, {r0-r12} 35 stm r0!, {r4-r12} 46 stm r0!, {r4-r12}
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | zipimport.c | 1039 struct tm stm; in parse_dostime() local 1041 memset((void *) &stm, '\0', sizeof(stm)); in parse_dostime() 1043 stm.tm_sec = (dostime & 0x1f) * 2; in parse_dostime() 1044 stm.tm_min = (dostime >> 5) & 0x3f; in parse_dostime() 1045 stm.tm_hour = (dostime >> 11) & 0x1f; in parse_dostime() 1046 stm.tm_mday = dosdate & 0x1f; in parse_dostime() 1047 stm.tm_mon = ((dosdate >> 5) & 0x0f) - 1; in parse_dostime() 1048 stm.tm_year = ((dosdate >> 9) & 0x7f) + 80; in parse_dostime() 1049 stm.tm_isdst = -1; /* wday/yday is ignored */ in parse_dostime() 1051 return mktime(&stm); in parse_dostime()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | zipimport.c | 1067 struct tm stm; in parse_dostime() local 1069 memset((void *) &stm, '\0', sizeof(stm)); in parse_dostime() 1071 stm.tm_sec = (dostime & 0x1f) * 2; in parse_dostime() 1072 stm.tm_min = (dostime >> 5) & 0x3f; in parse_dostime() 1073 stm.tm_hour = (dostime >> 11) & 0x1f; in parse_dostime() 1074 stm.tm_mday = dosdate & 0x1f; in parse_dostime() 1075 stm.tm_mon = ((dosdate >> 5) & 0x0f) - 1; in parse_dostime() 1076 stm.tm_year = ((dosdate >> 9) & 0x7f) + 80; in parse_dostime() 1077 stm.tm_isdst = -1; /* wday/yday is ignored */ in parse_dostime() 1079 return mktime(&stm); in parse_dostime()
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/ |
D | CopyMem.S | 7 # any trailing bytes. It was updated to do 32-byte copies using stm/ldm.
|
D | CopyMem.asm | 7 ; any trailing bytes. It was updated to do 32-byte copies using stm/ldm.
|