Home
last modified time | relevance | path

Searched refs:bif (Results 1 - 25 of 38) sorted by relevance

12

/third_party/ltp/testcases/kernel/device-drivers/tbio/tbio_user/
H A Dtbio.c140 tbio_interface_t bif; in tbio_to_dev() local
142 memset(&bif, 0, sizeof(tbio_interface_t)); in tbio_to_dev()
143 rc = posix_memalign(&bif.data, 512, 1024); in tbio_to_dev()
149 strcpy(bif.data, "User space data"); in tbio_to_dev()
150 bif.data_len = 1024; in tbio_to_dev()
151 bif.direction = TBIO_TO_DEV; in tbio_to_dev()
152 bif.cmd = SAFE_MALLOC(cleanup, 6); in tbio_to_dev()
153 if (bif.cmd == NULL) { in tbio_to_dev()
155 free(bif.data); in tbio_to_dev()
158 strcpy(bif in tbio_to_dev()
179 tbio_interface_t bif; tbio_from_dev() local
226 tbio_interface_t bif; tbio_split_to_dev() local
264 tbio_interface_t bif; ki_generic() local
[all...]
/third_party/optimized-routines/string/aarch64/
H A 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
H A Dstrchr-mte.S85 bif vhas_nul.16b, vhas_chr.16b, vrepmask.16b
/third_party/ffmpeg/libavcodec/aarch64/
H A Dvp9lpf_16bpp_neon.S292 bif v2.16b, v17.16b, v7.16b
299 bif v3.16b, v18.16b, v7.16b
306 bif v4.16b, v19.16b, v7.16b
313 bif v5.16b, v20.16b, v7.16b
320 bif v6.16b, v21.16b, v7.16b
327 bif v8.16b, v22.16b, v7.16b
333 bif v9.16b, v23.16b, v7.16b
341 bif v10.16b, v24.16b, v7.16b
348 bif v11.16b, v25.16b, v7.16b
355 bif v1
[all...]
H A 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 v1
[all...]
H A Dsbrdsp_neon.S291 bif v2.16B, v6.16B, v7.16B
/third_party/selinux/libsepol/cil/src/
H A 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()
H A 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()
H A 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()
H A 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()
H A Dcil_build_ast.h132 void cil_destroy_boolif(struct cil_booleanif *bif);
H A 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 in cil_destroy_boolif()
[all...]
H A Dcil_internal.h1034 void cil_boolif_init(struct cil_booleanif **bif);
H A 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/
H A 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
3658 struct cil_booleanif *bif; test_cil_gen_expr_stack_not_noexpr_neg() local
3681 struct cil_booleanif *bif; test_cil_gen_expr_stack_not_extraexpr_neg() local
3704 struct cil_booleanif *bif; test_cil_gen_expr_stack_eq() local
3727 struct cil_booleanif *bif; test_cil_gen_expr_stack_neq() local
3750 struct cil_booleanif *bif; test_cil_gen_expr_stack_nested() local
3773 struct cil_booleanif *bif; test_cil_gen_expr_stack_nested_neg() local
3796 struct cil_booleanif *bif; test_cil_gen_expr_stack_nested_emptyargs_neg() local
3819 struct cil_booleanif *bif; test_cil_gen_expr_stack_nested_missingoperator_neg() local
3842 struct cil_booleanif *bif; test_cil_gen_expr_stack_arg1null_neg() local
3865 struct cil_booleanif *bif; test_cil_gen_expr_stack_arg2null_neg() local
3888 struct cil_booleanif *bif; test_cil_gen_expr_stack_extraarg_neg() local
3910 struct cil_booleanif *bif; test_cil_gen_expr_stack_currnull_neg() local
[all...]
H A Dtest_cil_resolve_ast.c6806 struct cil_booleanif *bif = (struct cil_booleanif*)test_db->ast->root->cl_head->next->next->next->data; 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, args); in test_cil_resolve_expr_stack_bools()
6928 struct cil_booleanif *bif = (struct cil_booleanif*)test_db->ast->root->cl_head->next->next->next->data; 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, args); in test_cil_resolve_expr_stack_neg()
6953 struct cil_booleanif *bif = (struct cil_booleanif*)test_db->ast->root->cl_head->next->next->next->data; 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, args); in test_cil_resolve_expr_stack_emptystr_neg()
/third_party/ltp/scripts/
H A Dcheckpatch.pl5348 if ($line =~ /(\bif\s*|)(\(\s*$Ident\s*(?:$Member\s*)+\))[ \t]*\(/ && $1 !~ /^if/) {
5442 $line =~ /\bif\s*((?:\(\s*){2,})/) {
5446 if ($line =~ /\bif\s*(?:\(\s*){$count,$count}$LvalOrFunc\s*($Compare)\s*$LvalOrFunc(?:\s*\)){$count,$count}/) {
5532 if ($c =~ /\bif\s*\(.*[^<>!=]=[^=].*/s) {
5943 if ($line =~ /(^.*)\bif\b/ && $1 !~ /else\s*$/) {
6227 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
/third_party/node/deps/v8/src/codegen/arm64/
H A Dassembler-arm64.h485 void bif(const VRegister& vd, const VRegister& vn, const VRegister& vm);
H A Dmacro-assembler-arm64.h361 V(bif, Bif) \
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/crypto/modes/
H A Daes-gcm-armv8_64.S963 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
2997 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
5164 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/modes/
H A Daes-gcm-armv8_64.S963 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
2997 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
5164 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/modes/
H A Daes-gcm-armv8_64.S963 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
2997 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
5164 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/modes/
H A Daes-gcm-armv8_64.S963 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
2997 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
5164 bif v5.16b, v18.16b, v0.16b //insert existing bytes in top end of result before storing
/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-arm64.h1704 LogicVRegister bif(VectorFormat vform, LogicVRegister dst,
/third_party/node/deps/openssl/openssl/crypto/modes/asm/
H A Daes-gcm-armv8_64.pl1105 bif $res1b, $rk0, $ctr0b @ insert existing bytes in top end of result before storing
2983 bif $res1b, $rk0, $ctr0b @ insert existing bytes in top end of result before storing
4945 bif $res1b, $rk0, $ctr0b @ insert existing bytes in top end of result before storing

Completed in 131 milliseconds

12