Home
last modified time | relevance | path

Searched refs:para (Results 1 - 25 of 72) sorted by relevance

123

/third_party/skia/modules/canvaskit/
H A Dparagraph_bindings_gen.cpp17 namespace para = skia::textlayout;
20 enum_<para::Affinity>("Affinity") in EMSCRIPTEN_BINDINGS()
21 .value("Upstream", para::Affinity::kUpstream) in EMSCRIPTEN_BINDINGS()
22 .value("Downstream", para::Affinity::kDownstream); in EMSCRIPTEN_BINDINGS()
24 enum_<para::TextDecorationStyle>("DecorationStyle") in EMSCRIPTEN_BINDINGS()
25 .value("Solid", para::TextDecorationStyle::kSolid) in EMSCRIPTEN_BINDINGS()
26 .value("Double", para::TextDecorationStyle::kDouble) in EMSCRIPTEN_BINDINGS()
27 .value("Dotted", para::TextDecorationStyle::kDotted) in EMSCRIPTEN_BINDINGS()
28 .value("Dashed", para::TextDecorationStyle::kDashed) in EMSCRIPTEN_BINDINGS()
29 .value("Wavy", para in EMSCRIPTEN_BINDINGS()
[all...]
H A Dparagraph_bindings.cpp29 namespace para = skia::textlayout;
50 para::TextDecorationStyle decorationStyle;
51 para::TextBaseline textBaseline;
86 para::StrutStyle toStrutStyle(const SimpleStrutStyle& s) { in toStrutStyle()
87 para::StrutStyle ss; in toStrutStyle()
120 para::TextStyle toTextStyle(const SimpleTextStyle& s) { in toTextStyle()
121 para::TextStyle ts; in toTextStyle()
157 ts.setDecoration(para::TextDecoration(s.decoration)); in toTextStyle()
191 para::TextShadow shadow(colors[i].toSkColor(), offsets[i], blurRadii[i]); in toTextStyle()
216 para
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/flashboot/secure/
H A Dcrypto.c426 static hi_u32 crypto_encrypt_data(hi_flash_crypto_content *content, boot_crypto_ctx *para) in crypto_encrypt_data() argument
431 hi_u8 *fw_cyp_data = boot_malloc(para->crypto_total_size); in crypto_encrypt_data()
453 ret = hi_cipher_aes_crypto((uintptr_t)(para->buf), (uintptr_t)fw_cyp_data, para->crypto_total_size, HI_TRUE); in crypto_encrypt_data()
458 ret = g_flash_cmd_funcs.write(para->kernel_addr + para->crypto_start_addr, para->crypto_total_size, in crypto_encrypt_data()
658 hi_u32 encrypt_upg_data(boot_crypto_ctx *para) in encrypt_upg_data() argument
674 hi_u32 cs = KERNEL_RAM_ADDR ^ CRYPTO_KERNEL_LENGTH ^ (uintptr_t)(para->buf) ^ CRYPTO_KERNEL_LENGTH; in encrypt_upg_data()
675 ret = memcpy_s((hi_u8 *)KERNEL_RAM_ADDR, CRYPTO_KERNEL_LENGTH, para in encrypt_upg_data()
733 upg_check_encrypt(boot_crypto_ctx *para, hi_u8 *buf, hi_u32 buf_len) upg_check_encrypt() argument
831 boot_crypto_upg_file_prepare(boot_crypto_ctx *para) boot_crypto_upg_file_prepare() argument
863 boot_crypto_upg_file_decrypt(boot_crypto_ctx *para) boot_crypto_upg_file_decrypt() argument
919 decrypt_para_init(boot_crypto_ctx *para, hi_u32 start) decrypt_para_init() argument
974 set_upg_decrypt_flag(boot_crypto_ctx *para) set_upg_decrypt_flag() argument
984 upg_check_decrypt(boot_crypto_ctx *para, hi_u8 *buf, hi_u32 buf_len) upg_check_decrypt() argument
1092 boot_crypto_ctx *para = boot_crypto_get_ctx(); crypto_kernel_write() local
1114 boot_crypto_ctx *para = boot_decrypt_get_ctx(); crypto_kernel_read() local
[all...]
/test/testfwk/developer_test/src/core/build/
H A Dbuild_manager.py95 # para 指令参数
99 def _compile_deps_files(cls, project_root_path, para):
101 if BuildTestcases(project_root_path).build_deps_files(para.productform):
110 def _compile_part_deps(cls, project_root_path, para):
112 if BuildTestcases(project_root_path).build_part_deps(para):
121 # para 指令参数
123 def _compile_xts_test_cases(cls, project_root_path, para):
124 if BuildTestcases(project_root_path).build_xts_testcases(para):
133 def _compile_fuzz_test_case(cls, project_root_path, para):
135 project_root_path).build_fuzz_testcases(para)
[all...]
H A Dbuild_testcases.py102 def _delete_xts_testcase_dir(cls, para):
104 get_build_output_path(para.productform),
106 para.testtype[0],
113 def build_fuzz_testcases(self, para):
114 self._delete_testcase_dir(para.productform)
117 'make_temp_test', para.productform]
122 self._merge_testcase_dir(para.productform)
156 def build_xts_testcases(self, para):
157 self._delete_xts_testcase_dir(para)
159 if para
[all...]
H A Dselect_targets.py122 def filter_build_targets(self, para):
123 productform = para.productform
124 typelist = para.testtype
125 partlist = para.partname_list
126 testmodule = para.testmodule
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/system/upg/
H A Dkernel_crypto.c373 static hi_u32 crypto_decrypt_kernel(hi_flash_crypto_content *content, encrypt_ctx *para) in crypto_decrypt_kernel() argument
377 hi_u8 *fw_raw_data = para->raw_buf; in crypto_decrypt_kernel()
395 ret = hi_cipher_aes_crypto(para->kernel_start + para->encrypt_offset + SFC_BUFFER_BASE_ADDRESS, in crypto_decrypt_kernel()
396 (uintptr_t)fw_raw_data, para->encrypt_size, HI_FALSE); in crypto_decrypt_kernel()
407 hi_u32 crypto_decrypt(encrypt_ctx *para) in crypto_decrypt() argument
412 hi_u32 ret = crypto_content_id(para, &werk_content, &werk_content_bak); in crypto_decrypt()
444 ret = crypto_decrypt_kernel(key_content, para); in crypto_decrypt()
450 ret = crypto_decrypt_kernel(key_content, para); in crypto_decrypt()
462 static hi_u32 crypto_encrypt_data(hi_flash_crypto_content *new_content, encrypt_ctx *para) in crypto_encrypt_data() argument
515 encrypt_upg_data(encrypt_ctx *para) encrypt_upg_data() argument
563 crypto_init_param(encrypt_ctx *para, uintptr_t kernel_start) crypto_init_param() argument
599 crypto_upg_file_prepare(encrypt_ctx *para) crypto_upg_file_prepare() argument
629 crypto_upg_file_decrypt(encrypt_ctx *para) crypto_upg_file_decrypt() argument
[all...]
H A Dupg_check_secure.c207 encrypt_ctx *para = encrypt_get_ctx(); in upg_crypto_set_secure_verify_param() local
208 para->raw_buf = (hi_u8 *)hi_malloc(0, CRYPTO_KERNEL_LENGTH); in upg_crypto_set_secure_verify_param()
209 if (para->raw_buf == HI_NULL) { in upg_crypto_set_secure_verify_param()
213 hi_u32 ret = crypto_decrypt(para); in upg_crypto_set_secure_verify_param()
219 param->flash_addr[1] = (uintptr_t)(para->raw_buf); in upg_crypto_set_secure_verify_param()
220 param->total_size[1] = para->encrypt_size; in upg_crypto_set_secure_verify_param()
223 sizeof(hi_upg_sign) + para->encrypt_size; in upg_crypto_set_secure_verify_param()
225 para->encrypt_size; in upg_crypto_set_secure_verify_param()
291 encrypt_ctx *para = encrypt_get_ctx(); in upg_check_upg_file_code() local
292 crypto_mem_free(para in upg_check_upg_file_code()
[all...]
H A Dkernel_crypto.h93 hi_u32 crypto_decrypt(encrypt_ctx *para);
95 hi_u32 encrypt_upg_data(encrypt_ctx *para);
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dreflow.py151 def gatherVUIDs(self, para):
153 for line in para:
161 def addVUID(self, para, state):
166 return para, hangIndent
173 if nestedVuPat.search(para[0]):
177 return para, hangIndent
180 if self.vuPrefix in para[0]:
181 return para, hangIndent
189 matches = vuPat.search(para[0])
195 # para[
[all...]
H A Ddoctransformer.py99 self.para = []
133 self.para = []
171 if self.para == []:
173 self.para = [line]
181 self.para.append(line)
250 if self.state.para != []:
251 transformedPara = self.state.para
257 self.state.para,
277 accumulated, e.g. len(para) > 0 - currently not implemented)"""
318 if self.state.para !
[all...]
/test/xts/acts/hiviewdfx/hiappeventtest/hiappeventcpptest/
H A DHiAppEventCPPTest.cpp83 std::vector<std::string> para = {"test_event", "\"type_\":1", "\"bool_key\":false"}; in HWTEST_F() local
85 result = CheckInfo(para, fileinfo); in HWTEST_F()
119 std::vector<std::string> para = {"test_event", "\"type_\":1", "\"bool_key\":true"}; in HWTEST_F() local
121 result = CheckInfo(para, fileinfo); in HWTEST_F()
154 std::vector<std::string> para = {"test_event", "\"type_\":1", "\"bool_arr_key\":[true,true]"}; in HWTEST_F() local
156 result = CheckInfo(para, fileinfo); in HWTEST_F()
189 std::vector<std::string> para = {"test_event", "\"type_\":4", "\"str_key\":\"hello\""}; in HWTEST_F() local
191 result = CheckInfo(para, fileinfo); in HWTEST_F()
226 std::vector<std::string> para = {"test_event", "\"type_\":4", "\"str_arr_key\":[\"hello\",\"world\"]"}; in HWTEST_F() local
228 result = CheckInfo(para, fileinf in HWTEST_F()
261 std::vector<std::string> para = {"test_event", "\\"type_\\":1", "\\"double_key\\":30949.374"}; HWTEST_F() local
296 std::vector<std::string> para = {"test_event", "\\"type_\\":2", "\\"double_arr_key\\":[123.22,30949.374,131312.46464]"}; HWTEST_F() local
331 std::vector<std::string> para = {"test_event", "\\"type_\\":2", "\\"float_key\\":234.5"}; HWTEST_F() local
366 std::vector<std::string> para = {"test_event", "\\"type_\\":2", "\\"float_arr_key\\":[123.22", "234.5", "131312.46"}; HWTEST_F() local
401 std::vector<std::string> para = {"test_event", "\\"type_\\":3", "\\"int8_key\\":1"}; HWTEST_F() local
436 std::vector<std::string> para = {"test_event", "\\"type_\\":3", "\\"int8_arr_key\\":[1,10,100]"}; HWTEST_F() local
471 std::vector<std::string> para = {"test_event", "\\"type_\\":3", "\\"int16_key\\":1"}; HWTEST_F() local
506 std::vector<std::string> para = {"test_event", "\\"type_\\":3", "\\"int16_arr_key\\":[1,1000,5000]"}; HWTEST_F() local
541 std::vector<std::string> para = {"test_event", "\\"type_\\":3", "\\"int32_key\\":1"}; HWTEST_F() local
576 std::vector<std::string> para = {"test_event", "\\"type_\\":3", "\\"int32_arr_key\\":[1,100000,500000]"}; HWTEST_F() local
611 std::vector<std::string> para = {"test_event", "\\"type_\\":3", "\\"int64_key\\":1"}; HWTEST_F() local
646 std::vector<std::string> para = {"test_event", "\\"type_\\":3", "\\"int64_arr_key\\":[1,10000000,50000000]"}; HWTEST_F() local
688 std::vector<std::string> para = {"test_event", "\\"type_\\":4"}; HWTEST_F() local
726 std::vector<std::string> para = {"test_event", "\\"type_\\":4"}; HWTEST_F() local
827 std::vector<std::string> para = {"test_event", "\\"type_\\":1", "\\"key31\\":\\"value31\\"", "\\"key15\\":\\"value15\\""}; HWTEST_F() local
862 std::vector<std::string> para = {"test_event", "\\"type_\\":1"}; HWTEST_F() local
897 std::vector<std::string> para = {"test_event", "\\"type_\\":1"}; HWTEST_F() local
932 std::vector<std::string> para = {"test_event", "\\"type_\\":1"}; HWTEST_F() local
972 std::vector<std::string> para = {"test_event", "\\"type_\\":1"}; HWTEST_F() local
1007 std::vector<std::string> para = {"test_event", "\\"type_\\":1"}; HWTEST_F() local
1050 std::vector<std::string> para = {"test_event", "\\"type_\\":4", "\\"str_arr_key\\":[\\"hello_world_0\\",\\"hello_world_1\\",\\"hello_world_2\\"", "hello_world_99"}; HWTEST_F() local
1092 std::vector<std::string> para = {"test_event", "\\"type_\\":1", "\\"key31\\":\\"value31\\"","\\"key15\\":\\"value15\\"","\\"key0\\":\\"value0\\""}; HWTEST_F() local
1145 std::vector<std::string> para = {"test_event", "\\"type_\\":1", "\\"key31\\":\\"value31\\"","\\"key15\\":\\"value15\\"","\\"key0\\":\\"value0\\""}; HWTEST_F() local
1194 std::vector<std::string> para = {"test_event", "\\"type_\\":1", "\\"key31\\":\\"value31\\"","\\"key15\\":\\"value15\\"","\\"key0\\":\\"value0\\""}; HWTEST_F() local
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/hi_irq/kernel/
H A Dhiirq.c547 hiirq_irq_attr *para = (hiirq_irq_attr *)arg; in hiirq_wait_irq() local
553 if (para == NULL) { in hiirq_wait_irq()
557 osal_copy_from_user(&user_dev, para->dev, sizeof(hi_irq_arg)); in hiirq_wait_irq()
558 irq_node = get_list_node(para->irq_num, para->dev); in hiirq_wait_irq()
560 hiirq_trace("[%s,line:%d]irq_num:%d not enable\n", HIIRQ_PFX, __LINE__, para->irq_num); in hiirq_wait_irq()
568 ret, para->irq_num); in hiirq_wait_irq()
592 osal_copy_to_user(para->dev, &user_dev, sizeof(hi_irq_arg)); in hiirq_wait_irq()
601 hiirq_irq_attr *para = (hiirq_irq_attr *)arg; in hiirq_get_irq_num() local
603 if (para in hiirq_get_irq_num()
722 hiirq_set_irq_reg_info *para = (hiirq_set_irq_reg_info *)arg; hiirq_set_irq_reg() local
758 hiirq_ioctl(unsigned int cmd, unsigned long para, void *private_data) hiirq_ioctl() argument
[all...]
/third_party/backends/backend/
H A Dxerox_mfp.c365 dev->para.pixels_per_line, dev->para.lines, in dev_stop()
661 dev->para.last_frame = SANE_TRUE; in set_parameters()
662 dev->para.lines = -1; in set_parameters()
670 dev->para.pixels_per_line = dev->win_width / px_to_len; in set_parameters()
671 dev->para.bytes_per_line = dev->para.pixels_per_line; in set_parameters()
681 dev->para.lines = dev->win_len / px_to_len; in set_parameters()
684 dev->para.format = SANE_FRAME_GRAY; in set_parameters()
685 dev->para in set_parameters()
1173 sane_get_parameters(SANE_Handle h, SANE_Parameters *para) sane_get_parameters() argument
[all...]
/third_party/pulseaudio/man/
H A Dxmltoman28 my $para = 0;
135 print "\n" if ($para);
158 $para = 0;
168 $para = 0;
175 $para = 1;
/device/qemu/SmartL_E802/liteos_m/board/hals/csky_driver/include/
H A Ddrv_common.h34 #define HANDLE_PARAM_CHK(para, err) \
36 if (para == NULL) { \
41 #define HANDLE_PARAM_CHK(para, err)
/device/soc/hisilicon/hi3751v350/sdk_linux/source/msp/drv/hiirq/kernel/
H A Dhiirq.c724 hiirq_irq_attr *para = (hiirq_irq_attr *)arg; in hiirq_wait_irq() local
730 if (para == NULL) { in hiirq_wait_irq()
734 osal_copy_from_user(&user_dev, para->dev, sizeof(hi_irq_arg)); in hiirq_wait_irq()
735 irq_node = get_list_node(para->irq_num, para->dev); in hiirq_wait_irq()
737 hiirq_trace("[%s,line:%d]irq_num:%d not enable\n", HIIRQ_PFX, __LINE__, para->irq_num); in hiirq_wait_irq()
745 ret, para->irq_num); in hiirq_wait_irq()
769 osal_copy_to_user(para->dev, &user_dev, sizeof(hi_irq_arg)); in hiirq_wait_irq()
777 hiirq_irq_attr *para = (hiirq_irq_attr *)arg; in hiirq_get_irq_num() local
779 if (para in hiirq_get_irq_num()
919 hiirq_set_irq_reg_info *para = (hiirq_set_irq_reg_info *)arg; hiirq_set_irq_reg() local
[all...]
/device/soc/hisilicon/hi3751v350/sdk_linux/source/msp/drv/hiproc/kernel/
H A Dhiproc.c172 static hi_s32 hiproc_create_proc_entry(unsigned int cmd, hi_void *para, hi_void *private_data) in hiproc_create_proc_entry() argument
176 proc_name = (hi_proc_name *)((uintptr_t)para); in hiproc_create_proc_entry()
193 static hi_s32 hiproc_remove_proc_entry(unsigned int cmd, hi_void *para, hi_void *private_data) in hiproc_remove_proc_entry() argument
197 proc_name = (hi_proc_name *)((uintptr_t)para); in hiproc_remove_proc_entry()
212 static hi_s32 hiproc_get_cmd(unsigned int cmd, hi_void *para, hi_void *private_data) in hiproc_get_cmd() argument
223 user_proc_info = (hi_proc_para *)((uintptr_t)para); in hiproc_get_cmd()
239 static hi_s32 hiproc_wake_read_task(unsigned int cmd, hi_void *para, hi_void *private_data) in hiproc_wake_read_task() argument
242 show_buf = (hi_proc_show_buf *)((uintptr_t)para); in hiproc_wake_read_task()
275 static hi_s32 hiproc_wake_write_task(unsigned int cmd, hi_void *para, hi_void *private_data) in hiproc_wake_write_task() argument
282 static hi_s32 hiproc_wake_get_cmd(unsigned int cmd, hi_void *para, hi_voi argument
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/drivers/cipher/
H A Ddrv_pke_common.h513 hi_u32 drv_pke_add_mod(const pke_add_mod *para, rotate_type rotate);
516 hi_u32 drv_pke_sub_mod(const pke_add_mod *para, rotate_type rotate);
519 hi_u32 drv_pke_mul_mod(const pke_mul_mod *para, rotate_type rotate);
522 hi_u32 drv_pke_mul_dot(const pke_mul_dot *para, const hi_cipher_ecc_param *ecp_id, rotate_type rotate);
525 hi_u32 drv_pke_add_dot(const pke_add_dot *para, const hi_cipher_ecc_param *ecp_id, rotate_type rotate);
528 hi_u32 drv_pke_double_dot(const pke_double_dot *para, const hi_cipher_ecc_param *ecp_id, rotate_type rotate);
531 hi_u32 drv_pke_mod_block(const pke_block *a, const pke_mod_block *para, rotate_type rotate);
/device/soc/hisilicon/hi3751v350/sdk_linux/source/msp/drv/devfreq/
H A Dgovernor_utgard_ondemand.c36 typedef struct para { struct
50 } para; typedef
63 struct para *mali_valuable; in devfreq_hisilicon_func()
74 mali_valuable = (struct para*)status->private_data; in devfreq_hisilicon_func()
/device/soc/hisilicon/hi3751v350/sdk_linux/source/msp/drv/hidev/kernel/
H A Dhidev.c45 static hi_s32 hidev_get_pm_cmd(unsigned int cmd, hi_void *para, hi_void *private_data) in hidev_get_pm_cmd() argument
47 struct hidev_pm_cmd *pm_cmd = para; in hidev_get_pm_cmd()
58 static hi_s32 hidev_free_block_mem(unsigned int cmd, hi_void *para, hi_void *private_data) in hidev_free_block_mem() argument
60 struct hidev_block_mem *block_mem = para; in hidev_free_block_mem()
/test/xts/hats/hdf/location/gnss/
H A Dlocation_gnss_test.cpp245 GnssConfigPara para; in HWTEST_F() local
246 para.gnssBasic.minInterval = 10; in HWTEST_F()
247 para.gnssBasic.gnssMode = GnssWorkingMode::GNSS_WORKING_MODE_STANDALONE; in HWTEST_F()
248 para.gnssCaching.interval = 20; in HWTEST_F()
249 para.gnssCaching.fifoFullNotify = true; in HWTEST_F()
250 int32_t ret = g_ignssHci->SetGnssConfigPara(para); in HWTEST_F()
/test/xts/acts/hiviewdfx/utils/native/
H A Dfile_utils.cpp132 bool CheckInfo(std::vector<std::string> &para, std::string info) in CheckInfo() argument
139 for (unsigned long i = 0; i < para.size(); i++) { in CheckInfo()
140 if (int(info.find(para[i])) >= 0) { in CheckInfo()
145 if (matchcnt == para.size()) { in CheckInfo()
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/kernel/include/
H A Dlos_err.h59 * @param para [IN] User label of the error.
70 VOID *para);
87 * @param para [IN] User label of the error.
96 VOID *para);
/third_party/FreeBSD/sys/dev/usb/
H A Dusb_process.c54 usb_process_thread(UINTPTR para) in usb_process_thread() argument
56 struct usb_process *up = (struct usb_process*)para; in usb_process_thread()
159 usb_os_task_creat(pthread_t *taskid, TSK_ENTRY_FUNC func, uint32_t prio, const char *nm, UINTPTR para) in usb_os_task_creat() argument
168 attr.auwArgs[0] = (UINTPTR)para; in usb_os_task_creat()

Completed in 18 milliseconds

123