Home
last modified time | relevance | path

Searched refs:bif (Results 1 – 25 of 49) sorted by relevance

12

/third_party/ltp/testcases/kernel/device-drivers/tbio/tbio_user/
Dtbio.c145 tbio_interface_t bif; in tbio_to_dev() local
147 memset(&bif, 0, sizeof(tbio_interface_t)); in tbio_to_dev()
148 rc = posix_memalign(&bif.data, 512, 1024); in tbio_to_dev()
154 strcpy(bif.data, "User space data"); in tbio_to_dev()
155 bif.data_len = 1024; in tbio_to_dev()
156 bif.direction = TBIO_TO_DEV; in tbio_to_dev()
157 bif.cmd = SAFE_MALLOC(cleanup, 6); in tbio_to_dev()
158 if (bif.cmd == NULL) { in tbio_to_dev()
160 free(bif.data); in tbio_to_dev()
163 strcpy(bif.cmd, "WRITE"); in tbio_to_dev()
[all …]
/third_party/optimized-routines/string/aarch64/
Dstrchr.S77 bif vhas_nul1.16b, vhas_chr1.16b, vrepmask_0.16b
78 bif vhas_nul2.16b, vhas_chr2.16b, vrepmask_0.16b
105 bif vhas_nul1.16b, vhas_chr1.16b, vrepmask_0.16b
106 bif vhas_nul2.16b, vhas_chr2.16b, vrepmask_0.16b
Dstrchr-mte.S85 bif vhas_nul.16b, vhas_chr.16b, vrepmask.16b
/third_party/ffmpeg/libavcodec/aarch64/
Dvp9lpf_16bpp_neon.S304 bif v2.16b, v17.16b, v7.16b
311 bif v3.16b, v18.16b, v7.16b
318 bif v4.16b, v19.16b, v7.16b
325 bif v5.16b, v20.16b, v7.16b
332 bif v6.16b, v21.16b, v7.16b
339 bif v8.16b, v22.16b, v7.16b
345 bif v9.16b, v23.16b, v7.16b
353 bif v10.16b, v24.16b, v7.16b
360 bif v11.16b, v25.16b, v7.16b
367 bif v12.16b, v26.16b, v7.16b
[all …]
Dvp9lpf_neon.S443 bif v2\sz, v17\sz, v7\sz
450 bif v3\sz, v18\sz, v7\sz
457 bif v4\sz, v19\sz, v7\sz
464 bif v5\sz, v20\sz, v7\sz
471 bif v6\sz, v21\sz, v7\sz
478 bif v8\sz, v22\sz, v7\sz
484 bif v9\sz, v23\sz, v7\sz
492 bif v10\sz, v24\sz, v7\sz
499 bif v11\sz, v25\sz, v7\sz
506 bif v12\sz, v26\sz, v7\sz
[all …]
Dsbrdsp_neon.S291 bif v2.16B, v6.16B, v7.16B
/third_party/openssl/test/certs/
Dca-cert-ec-named.pem5 bAiJMXJXW/u0NbcGCrrbhO1NJSHHV3Lks888sqeSPh/bif/ASJ0HX+VarMUoFIKj
/third_party/selinux/libsepol/cil/src/
Dcil_reset_ast.c473 static void cil_reset_booleanif(struct cil_booleanif *bif) in cil_reset_booleanif() argument
475 cil_list_destroy(&bif->datum_expr, CIL_FALSE); in cil_reset_booleanif()
Dcil_verify.c1026 struct cil_booleanif *bif = node->parent->parent->data; in __cil_verify_booleanif_helper() local
1033 if (bif->preserved_tunable) { in __cil_verify_booleanif_helper()
1096 if (bif->preserved_tunable) { in __cil_verify_booleanif_helper()
1113 struct cil_booleanif *bif = (struct cil_booleanif*)node->data; in __cil_verify_booleanif() local
1126 if (bif->preserved_tunable) { in __cil_verify_booleanif()
Dcil_write_ast.c602 struct cil_booleanif *bif = node->data; in cil_write_ast_node() local
604 if (bif->datum_expr) in cil_write_ast_node()
605 write_expr(out, bif->datum_expr); in cil_write_ast_node()
607 write_expr(out, bif->str_expr); in cil_write_ast_node()
Dcil.c2432 void cil_boolif_init(struct cil_booleanif **bif) in cil_boolif_init() argument
2434 *bif = cil_malloc(sizeof(**bif)); in cil_boolif_init()
2436 (*bif)->str_expr = NULL; in cil_boolif_init()
2437 (*bif)->datum_expr = NULL; in cil_boolif_init()
Dcil_build_ast.c2878 struct cil_booleanif *bif = NULL; in cil_gen_boolif() local
2891 cil_boolif_init(&bif); in cil_gen_boolif()
2892 bif->preserved_tunable = tunableif; in cil_gen_boolif()
2894 rc = cil_gen_expr(parse_current->next, CIL_BOOL, &bif->str_expr); in cil_gen_boolif()
2910 ast_node->data = bif; in cil_gen_boolif()
2920 cil_destroy_boolif(bif); in cil_gen_boolif()
2924 void cil_destroy_boolif(struct cil_booleanif *bif) in cil_destroy_boolif() argument
2926 if (bif == NULL) { in cil_destroy_boolif()
2930 cil_list_destroy(&bif->str_expr, CIL_TRUE); in cil_destroy_boolif()
2931 cil_list_destroy(&bif->datum_expr, CIL_FALSE); in cil_destroy_boolif()
[all …]
Dcil_build_ast.h132 void cil_destroy_boolif(struct cil_booleanif *bif);
Dcil_internal.h1034 void cil_boolif_init(struct cil_booleanif **bif);
Dcil_resolve_ast.c3345 struct cil_booleanif *bif = (struct cil_booleanif*)current->data; in cil_resolve_boolif() local
3347 rc = cil_resolve_expr(CIL_BOOLEANIF, bif->str_expr, &bif->datum_expr, current, extra_args); in cil_resolve_boolif()
/third_party/selinux/libsepol/cil/test/unit/
Dtest_cil_build_ast.c3566 struct cil_booleanif *bif; in test_cil_gen_expr_stack_and() local
3567 cil_boolif_init(&bif); in test_cil_gen_expr_stack_and()
3569 int rc = cil_gen_expr_stack(test_tree->root->cl_head->cl_head->next, CIL_BOOL, &bif->expr_stack); in test_cil_gen_expr_stack_and()
3589 struct cil_booleanif *bif; in test_cil_gen_expr_stack_or() local
3590 cil_boolif_init(&bif); in test_cil_gen_expr_stack_or()
3592 int rc = cil_gen_expr_stack(test_tree->root->cl_head->cl_head->next, CIL_BOOL, &bif->expr_stack); in test_cil_gen_expr_stack_or()
3612 struct cil_booleanif *bif; in test_cil_gen_expr_stack_xor() local
3613 cil_boolif_init(&bif); in test_cil_gen_expr_stack_xor()
3615 int rc = cil_gen_expr_stack(test_tree->root->cl_head->cl_head->next, CIL_BOOL, &bif->expr_stack); in test_cil_gen_expr_stack_xor()
3635 struct cil_booleanif *bif; in test_cil_gen_expr_stack_not() local
[all …]
Dtest_cil_resolve_ast.c6806 …struct cil_booleanif *bif = (struct cil_booleanif*)test_db->ast->root->cl_head->next->next->next->… in test_cil_resolve_expr_stack_bools() local
6808 …int rc = cil_resolve_expr_stack(bif->expr_stack, test_db->ast->root->cl_head->next->next->next, ar… in test_cil_resolve_expr_stack_bools()
6928 …struct cil_booleanif *bif = (struct cil_booleanif*)test_db->ast->root->cl_head->next->next->next->… in test_cil_resolve_expr_stack_neg() local
6930 …int rc = cil_resolve_expr_stack(bif->expr_stack,test_db->ast->root->cl_head->next->next->next, arg… in test_cil_resolve_expr_stack_neg()
6953 …struct cil_booleanif *bif = (struct cil_booleanif*)test_db->ast->root->cl_head->next->next->next->… in test_cil_resolve_expr_stack_emptystr_neg() local
6954 ((struct cil_conditional*)bif->expr_stack->head->data)->str = NULL; in test_cil_resolve_expr_stack_emptystr_neg()
6956 …int rc = cil_resolve_expr_stack(bif->expr_stack,test_db->ast->root->cl_head->next->next->next, arg… in test_cil_resolve_expr_stack_emptystr_neg()
/third_party/openh264/codec/encoder/core/arm64/
Dreconstruct_aarch64_neon.S57bif \arg3\().16b, \arg1\().16b, \arg4\().16b // if (x<0) reserved part; else keep 0 untou…
74bif \arg3\().16b, \arg1\().16b, \arg4\().16b // if (x<0) reserved part; else keep 0 untou…
89bif \arg3\().16b, \arg1\().16b, \arg4\().16b // if (x<0) reserved part; else keep 0 untou…
/third_party/skia/third_party/externals/icu/source/data/misc/
DkeyTypeData.txt205 bif{""}
/third_party/icu/icu4c/source/data/misc/
DkeyTypeData.txt206 bif{""}
/third_party/node/deps/v8/src/codegen/arm64/
Dmacro-assembler-arm64.h361 V(bif, Bif) \
Dassembler-arm64.h485 void bif(const VRegister& vd, const VRegister& vn, const VRegister& vm);
/third_party/node/deps/v8/src/execution/arm64/
Dsimulator-arm64.h1704 LogicVRegister bif(VectorFormat vform, LogicVRegister dst,
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/modes/
Daes-gcm-armv8_64.S963bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of res…
2997bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of resu…
5164bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of resu…
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/modes/
Daes-gcm-armv8_64.S963bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of res…
2997bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of resu…
5164bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of resu…

12