Home
last modified time | relevance | path

Searched refs:sec (Results 1 – 25 of 80) sorted by relevance

1234

/AliOS-Things-master/components/py_engine/engine/tools/
A Dmpy_ld.py325 log(LOG_LEVEL_2, " {:08x} {} size={}".format(sec.addr, sec.name, len(sec.data)))
337 for r in sec.reloc:
362 for r in sec.reloc:
406 sec = sym.section
496 sec = s.section
556 sec = s.section
560 assert sec.name.startswith(".literal"), sec.name
640 sec = s.section
814 sec.addr = align_to(len(data), sec.alignment)
826 if not sec.reloc:
[all …]
/AliOS-Things-master/components/SDL2/src/video/yuv2rgb/
A DREADME.md44 Processing time (std) : 2.630193 sec
45 Processing time (sse2_unaligned) : 0.704394 sec
47 Processing time (ipp_unaligned) : 0.636274 sec
48 Processing time (sse2_aligned) : 0.606648 sec
49 Processing time (ffmpeg_aligned) : 1.227100 sec
50 Processing time (ipp_aligned) : 0.636951 sec
55 Processing time (std) : 2.588675 sec
56 Processing time (sse2_unaligned) : 0.676625 sec
58 Processing time (ipp_unaligned) : 0.593890 sec
59 Processing time (sse2_aligned) : 0.640630 sec
[all …]
/AliOS-Things-master/components/amp_adapter/platform/linux/peripheral/
A Daos_hal_rtc.c17 time_save.sec = 45; in aos_hal_rtc_init()
29 time->sec = time_save.sec; in aos_hal_rtc_get_time()
40 time_save.sec = time->sec; in aos_hal_rtc_set_time()
52 time_save.sec = 0; in aos_hal_rtc_finalize()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/wifi/rtw_wpa_supplicant/src/utils/
A Dos.h30 void os_sleep(os_time_t sec, os_time_t usec);
33 os_time_t sec; member
38 os_time_t sec; member
53 ((a)->sec < (b)->sec || \
54 ((a)->sec == (b)->sec && (a)->usec < (b)->usec))
57 (res)->sec = (a)->sec - (b)->sec; \
60 (res)->sec--; \
80 int os_mktime(int year, int month, int day, int hour, int min, int sec,
84 int sec; /* 0..59 or 60 for leap seconds */ member
129 return (age.sec > timeout_secs) || in os_reltime_expired()
[all …]
/AliOS-Things-master/hardware/chip/rtl872xd/hal/hal_test/rtc/
A Drtc_test.c18 static rtc_time_t rtc_time = {.sec = 45, .min = 30, .hr = 15, .weekday = 5, .date = 1, .month = 3, …
36 rtc_time.hr, rtc_time.min, rtc_time.sec); in hal_rtc_test()
62 rtc_time_r.hr, rtc_time_r.min, rtc_time_r.sec); in hal_rtc_test()
64 if ((rtc_time_r.sec != rtc_time.sec + RTC_DELAY_MS / 1000) in hal_rtc_test()
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/apps/
A Dsntp_opts.h53 #define SNTP_SET_SYSTEM_TIME(sec) LWIP_UNUSED_ARG(sec) argument
146 #define SNTP_GET_SYSTEM_TIME(sec, us) do { (sec) = 0; (us) = 0; } while(0) argument
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/apps/
A Dsntp_opts.h53 #define SNTP_SET_SYSTEM_TIME(sec) LWIP_UNUSED_ARG(sec) argument
146 #define SNTP_GET_SYSTEM_TIME(sec, us) do { (sec) = 0; (us) = 0; } while(0) argument
/AliOS-Things-master/hardware/chip/rtl872xd/hal/hal_test/i2c/
A Di2c_test.c24 static rtc_time_t rtc_time = {.sec = 0x45, .min = 0x8, .hr = 0x1, .weekday = 0x5, .date = 0x1, .mon…
48 rtc_time.hr, rtc_time.min, rtc_time.sec); in hal_i2c_test()
65 rtc_time_r.hr, rtc_time_r.min, rtc_time_r.sec); in hal_i2c_test()
79 rtc_time_r.hr, rtc_time_r.min, rtc_time_r.sec); in hal_i2c_test()
81 if ((rtc_time_r.sec != rtc_time.sec + I2C_RTC_DELAY_MS / 1000) in hal_i2c_test()
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/fs/fat/
A DMemFileSystem.h58 char *sec = (char*)malloc(512); in disk_write() local
59 if(sec==0) { in disk_write()
62 sectors[sector] = sec; in disk_write()
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/hardware/rtc/
A Dmodule_rtc.c62 rtcTime.date, rtcTime.hr, rtcTime.min, rtcTime.sec); in native_rtc_get_time()
67 rtcTime.sec); in native_rtc_get_time()
110 if (duk_is_number(ctx, -1)) rtcTime.sec = duk_get_int(ctx, -1); in native_rtc_set_time()
116 rtcTime.sec); in native_rtc_set_time()
/AliOS-Things-master/components/freetype/src/tools/docmaker/
A Dcontent.py433 for sec in self.sections.values():
434 sec.process()
439 for sec in chap.order:
440 if self.sections.has_key( sec ):
441 section = self.sections[sec]
448 " lists unknown section '" + sec + "'\n" )
453 for sec in self.sections.values():
454 if not sec.chapter:
455 others.append( sec )
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/advanced/aiot/
A Dmodule_aiot_dynreg.c32 JSValue sec = JS_NewString(ctx, packet->data.device_info.device_secret); in aiot_app_dynreg_recv_handler() local
33 JSValue val = JS_Call(ctx, *js_cb_ref, JS_UNDEFINED, 1, &sec); in aiot_app_dynreg_recv_handler()
35 JS_FreeValue(ctx, sec); in aiot_app_dynreg_recv_handler()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/
A Dwifi_interactive_mode.c1144 rtw_security_t sec; in cmd_debug() local
1145 if(wifi_get_ap_info(&ap_info, &sec) == RTW_SUCCESS) { in cmd_debug()
1152 ( sec == RTW_SECURITY_WEP_PSK ) ? "WEP" : in cmd_debug()
1153 ( sec == RTW_SECURITY_WPA_TKIP_PSK ) ? "WPA TKIP" : in cmd_debug()
1154 ( sec == RTW_SECURITY_WPA_AES_PSK ) ? "WPA AES" : in cmd_debug()
1155 ( sec == RTW_SECURITY_WPA_MIXED_PSK ) ? "WPA Mixed" : in cmd_debug()
1156 ( sec == RTW_SECURITY_WPA2_AES_PSK ) ? "WPA2 AES" : in cmd_debug()
1157 ( sec == RTW_SECURITY_WPA2_TKIP_PSK ) ? "WPA2 TKIP" : in cmd_debug()
1158 ( sec == RTW_SECURITY_WPA2_MIXED_PSK ) ? "WPA2 Mixed" : in cmd_debug()
1159 ( sec == RTW_SECURITY_WPA_WPA2_TKIP_PSK) ? "WPA/WPA2 TKIP" : in cmd_debug()
[all …]
/AliOS-Things-master/components/py_engine/adapter/haas/
A Dmachine_rtc.c56 mp_obj_new_int(tm.hr), mp_obj_new_int(tm.min), mp_obj_new_int(tm.sec), in machine_rtc_datetime_helper()
73 .sec = mp_obj_get_int(items[6]), in machine_rtc_datetime_helper()
/AliOS-Things-master/components/py_engine/adapter/haas510/
A Dmachine_rtc.c84 mp_obj_new_int(tm.sec), in machine_rtc_datetime_helper()
101 .sec = mp_obj_get_int(items[6]), in machine_rtc_datetime_helper()
/AliOS-Things-master/components/py_engine/adapter/haas600/
A Dmachine_rtc.c84 mp_obj_new_int(tm.sec), in machine_rtc_datetime_helper()
101 .sec = mp_obj_get_int(items[6]), in machine_rtc_datetime_helper()
/AliOS-Things-master/components/posix/src/
A Dpthread.c255 int64_t sec = 0; in pthread_timedjoin_np() local
279 sec = abstime->tv_sec - time_now.tv_sec - 1; in pthread_timedjoin_np()
282 sec = abstime->tv_sec - time_now.tv_sec; in pthread_timedjoin_np()
285 if (sec < 0) { in pthread_timedjoin_np()
289 msec = sec * 1000 + nsec / 1000000; in pthread_timedjoin_np()
/AliOS-Things-master/components/sensor/include/
A Dgps_parse.h116 res->sec = gps_atoi(str_tmp,GPS_UTC_SEC_LEN,10); in gps_utc_get()
128 res->sec = gps_atoi(str_tmp,GPS_UTC_SEC_LEN,10); in gps_utc_get()
/AliOS-Things-master/components/py_engine/modules/driver/
A Drtc.c137 (uint32_t)rtcTime.min, (uint32_t)rtcTime.sec); in obj_getTime()
150 mp_obj_new_int((uint32_t)rtcTime.sec)); in obj_getTime()
184 rtcTime.sec = (uint8_t)mp_obj_get_int(args[6]); in obj_setTime()
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/hardware/rtc/
A Dmodule_rtc.c73 JS_SetPropertyStr(ctx, t, "second", JS_NewInt32(ctx, rtcTime.sec)); in native_rtc_get_time()
213 setTime->sec = data; in native_rtc_set_time()
219 setTime->sec); in native_rtc_set_time()
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/sys_time/
A Dsys_time.h33 char *hal_sys_format_time(s32_t sec);
/AliOS-Things-master/components/py_engine/engine/extmod/nimble/
A Dmodbluetooth_nimble.c1834 if (ble_addr_cmp(&key->sec.peer_addr, BLE_ADDR_ANY)) { in ble_store_ram_read()
1837 assert(key->sec.idx == 0); in ble_store_ram_read()
1838 assert(!key->sec.ediv_rand_present); in ble_store_ram_read()
1839 key_data = (const uint8_t *)&key->sec.peer_addr; in ble_store_ram_read()
1844 assert(!key->sec.ediv_rand_present); in ble_store_ram_read()
1853 assert(ble_addr_cmp(&key->sec.peer_addr, BLE_ADDR_ANY)); // Must have address. in ble_store_ram_read()
1854 assert(key->sec.idx == 0); in ble_store_ram_read()
1855 assert(key->sec.ediv_rand_present); in ble_store_ram_read()
1856 key_data = (const uint8_t *)&key->sec.peer_addr; in ble_store_ram_read()
1881 memcpy((uint8_t *)&value->sec, value_data, sizeof(struct ble_store_value_sec)); in ble_store_ram_read()
[all …]
/AliOS-Things-master/components/sntp/example/
A Dsntp_example.c26 sntp_time_get->sec); in sntp_comp_example()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/mbed/hal/
A Drtc_api.h52 uint32_t sec; member
/AliOS-Things-master/components/amp_adapter/include/peripheral/
A Daos_hal_rtc.h31 …uint8_t sec; /* DEC format:value range from 0 to 59, BCD format:value range from 0x00 to 0x59 … member

Completed in 35 milliseconds

1234