| /freebsd-src/contrib/llvm-project/openmp/runtime/src/include/ |
| H A D | omp_lib.f90.var | |
| H A D | omp_lib.h.var | 276 subroutine omp_set_num_threads(num_threads) bind(c) 281 subroutine omp_set_dynamic(dynamic_threads) bind(c) 286 subroutine omp_set_nested(nested) bind(c) 291 function omp_get_num_threads() bind(c) 296 function omp_get_max_threads() bind(c) 301 function omp_get_thread_num() bind(c) 306 function omp_get_num_procs() bind(c) 311 function omp_in_parallel() bind(c) 316 function omp_in_final() bind(c) 321 function omp_get_dynamic() bind( [all...] |
| /freebsd-src/contrib/kyua/store/ |
| H A D | write_transaction.cpp | 86 stmt.bind(":var_name", (*iter).first); in put_env_vars() 87 stmt.bind(":var_value", (*iter).second); in put_env_vars() 131 stmt.bind(":metadata_id", metadata_id); in put_metadata() 135 stmt.bind(":property_name", (*iter).first); in put_metadata() 136 stmt.bind(":property_value", (*iter).second); in put_metadata() 178 stmt.bind(":contents", sqlite::blob(contents.c_str(), contents.length())); in put_file() 268 stmt.bind(":cwd", context.cwd().str()); in put_context() 302 stmt.bind(":absolute_path", test_program.absolute_path().str()); in put_test_program() 306 stmt.bind(":root", test_program.root().str()); in put_test_program() 307 stmt.bind(":relative_path", test_program.relative_path().str()); in put_test_program() [all …]
|
| H A D | dbtypes.cpp | 51 stmt.bind(field, value ? "true" : "false"); in bind_bool() 64 stmt.bind(field, static_cast< int64_t >(delta.to_microseconds())); in bind_delta() 81 stmt.bind(field, sqlite::null()); in bind_optional_string() 83 stmt.bind(field, str); in bind_optional_string() 98 stmt.bind(field, "broken"); in bind_test_result_type() 102 stmt.bind(field, "expected_failure"); in bind_test_result_type() 106 stmt.bind(field, "failed"); in bind_test_result_type() 110 stmt.bind(field, "passed"); in bind_test_result_type() 114 stmt.bind(field, "skipped"); in bind_test_result_type() 132 stmt.bind(field, timestamp.to_microseconds()); in bind_timestamp()
|
| H A D | read_transaction.cpp | 106 stmt.bind(":metadata_id", metadata_id); in get_metadata() 131 stmt.bind(":file_id", file_id); in get_file() 168 stmt.bind(":test_program_id", test_program_id); in get_test_cases() 235 stmt.bind(":id", id); in get_test_program() 405 stmt.bind(":test_case_id", test_case_id); in get_test_case_file() 406 stmt.bind(":file_name", filename); in get_test_case_file()
|
| /freebsd-src/share/examples/BSD_daemon/ |
| H A D | eps.patch | 25 /col-1 {0 setgray} bind def 26 /col0 {0.000 0.000 0.000 srgb} bind def 28 /sh {show} bind def 29 /slc {setlinecap} bind def 30 /slj {setlinejoin} bind def 31 -/slw {setlinewidth} bind def 32 +/slw {linethickness mul setlinewidth} bind def 33 /srgb {setrgbcolor} bind def 34 /rot {rotate} bind def 35 /sc {scale} bind def
|
| /freebsd-src/contrib/kyua/utils/sqlite/ |
| H A D | statement.hpp | 118 void bind(const int, const blob&); 119 void bind(const int, const double); 120 void bind(const int, const int); 121 void bind(const int, const int64_t); 122 void bind(const int, const null&); 123 void bind(const int, const std::string&); 124 template< class T > void bind(const char*, const T&);
|
| H A D | statement.cpp | 493 sqlite::statement::bind(const int index, const blob& b) in bind() function in sqlite::statement 508 sqlite::statement::bind(const int index, const double value) in bind() function in sqlite::statement 522 sqlite::statement::bind(const int index, const int value) in bind() function in sqlite::statement 536 sqlite::statement::bind(const int index, const int64_t value) in bind() function in sqlite::statement 549 sqlite::statement::bind(const int index, const null& /* null */) in bind() function in sqlite::statement 567 sqlite::statement::bind(const int index, const std::string& text) in bind() function in sqlite::statement
|
| /freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NumberObjectConversionChecker.cpp | 203 .bind("c_object"))); in checkASTCodeBody() 214 .bind("osnumber")))))))))) in checkASTCodeBody() 215 .bind("cpp_object"))); in checkASTCodeBody() 225 .bind("objc_object"))); in checkASTCodeBody() 243 .bind("objc_bool_type"); in checkASTCodeBody() 247 qualType(anyOf(qualType(booleanType()).bind("cpp_bool_type"), in checkASTCodeBody() 257 .bind("int_type"); in checkASTCodeBody() 275 ))).bind("pedantic"); in checkASTCodeBody() 289 .bind("check_if_null")))) in checkASTCodeBody() 290 .bind("comparison"); in checkASTCodeBody() [all …]
|
| H A D | RunLoopAutoreleaseLeakChecker.cpp | 136 .bind(RunLoopBind); in getRunLoopRunM() 140 Extra).bind(RunLoopRunBind); in getRunLoopRunM() 143 callExpr(callee(functionDecl(hasName("xpc_main")))).bind(RunLoopRunBind); in getRunLoopRunM() 151 .bind(OtherMsgBind); in getOtherMessageSentM() 159 hasAncestor(autoreleasePoolStmt().bind(OtherStmtAutoreleasePoolBind))); in checkTempObjectsInSamePool() 164 hasDescendant(OtherMessageSentM)).bind(AutoreleasePoolBind); in checkTempObjectsInSamePool()
|
| H A D | ObjCAutoreleaseWriteChecker.cpp | 177 .bind(ParamBind); in checkASTCodeBody() 180 declRefExpr(to(parmVarDecl(DoublePointerParamM))).bind(CapturedBind); in checkASTCodeBody() 190 ).bind(ProblematicWriteBind); in checkASTCodeBody() 217 .bind(IsARPBind); in checkASTCodeBody() 225 objcMethodDecl(HasParamAndWritesInMarkedFuncM).bind(IsMethodBind), in checkASTCodeBody()
|
| H A D | GCDAntipatternChecker.cpp | 66 declRefExpr(to(varDecl().bind(DeclName))))); in bindAssignmentToDecl() 99 varDecl(hasDescendant(SemaphoreCreateM)).bind(SemaphoreBinding)), in findGCDAntiPatternWithSemaphore() 128 ).bind(WarnAtNode)); in findGCDAntiPatternWithSemaphore() 141 varDecl(hasDescendant(DispatchGroupCreateM)).bind(GroupBinding)), in findGCDAntiPatternWithGroup() 174 ).bind(WarnAtNode)); in findGCDAntiPatternWithGroup()
|
| /freebsd-src/share/skel/ |
| H A D | dot.shrc | 34 bind ^[[A ed-search-prev-history 35 bind ^[[B ed-search-next-history 38 bind "\\e[1;5C" em-next-word 39 bind "\\e[1;5D" ed-prev-word 43 bind ^[[5~ ed-move-to-beg 44 bind ^[[6~ ed-move-to-end
|
| /freebsd-src/bin/sh/ |
| H A D | dot.shrc | 34 bind ^[[A ed-search-prev-history 35 bind ^[[B ed-search-next-history 38 bind "\\e[1;5C" em-next-word 39 bind "\\e[1;5D" ed-prev-word 43 bind ^[[5~ ed-move-to-beg 44 bind ^[[6~ ed-move-to-end
|
| /freebsd-src/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ExprMutationAnalyzer.cpp | 262 .bind(NodeID<Expr>::value)), in tryEachDeclRef() 301 .bind(NodeID<Expr>::value)), in findExprMutation() 452 .bind("stmt"))), in findMemberMutation() 466 .bind(NodeID<Expr>::value)), in findArrayElementMutation() 480 .bind(NodeID<Expr>::value)), in findCastMutation() 492 .bind("stmt")), in findCastMutation() 505 .bind(NodeID<Expr>::value)), in findCastMutation() 515 .bind("expr")), in findRangeLoopMutation() 535 .bind(NodeID<Decl>::value)), in findRangeLoopMutation() 538 .bind("stm in findRangeLoopMutation() [all...] |
| /freebsd-src/sys/dev/xen/evtchn/ |
| H A D | evtchn_dev.c | 397 struct ioctl_evtchn_bind_virq *bind; in evtchn_ioctl() local 402 bind = (struct ioctl_evtchn_bind_virq *)arg; in evtchn_ioctl() 404 error = xen_intr_bind_virq(evtchn_dev, bind->virq, 0, in evtchn_ioctl() 413 bind->port = evtchn->port; in evtchn_ioctl() 418 struct ioctl_evtchn_bind_interdomain *bind; in evtchn_ioctl() local 423 bind = (struct ioctl_evtchn_bind_interdomain *)arg; in evtchn_ioctl() 426 bind->remote_domain, bind->remote_port, NULL, in evtchn_ioctl() 435 bind->port = evtchn->port; in evtchn_ioctl() 440 struct ioctl_evtchn_bind_unbound_port *bind; in evtchn_ioctl() local 445 bind = (struct ioctl_evtchn_bind_unbound_port *)arg; in evtchn_ioctl() [all …]
|
| /freebsd-src/contrib/tcsh/nls/ukrainian/ |
| H A D | set20 | 1 $ tc.bind.c 15 13 -a list or bind KEY in alternative key map\n 19 17 -v bind all keys to vi bindings\n 20 18 -e bind all keys to emacs bindings\n 21 19 -d bind all keys to default editor's bindings (%s)\n 38 36 Використання: bind [KEY | COMMAND KEY | "emacs" | "vi" | "-a"]\n
|
| /freebsd-src/contrib/tcsh/nls/C/ |
| H A D | set20 | 1 $ tc.bind.c 15 13 -a list or bind KEY in alternative key map\n 19 17 -v bind all keys to vi bindings\n 20 18 -e bind all keys to emacs bindings\n 21 19 -d bind all keys to default editor's bindings (%s)\n 38 36 usage: bind [KEY | COMMAND KEY | "emacs" | "vi" | "-a"]\n
|
| /freebsd-src/contrib/tcsh/nls/finnish/ |
| H A D | set20 | 1 $ tc.bind.c 15 13 -a list or bind KEY in alternative key map\n 19 17 -v bind all keys to vi bindings\n 20 18 -e bind all keys to emacs bindings\n 21 19 -d bind all keys to default editor's bindings (%s)\n 38 36 Käyttö: bind [NÄPPÄIN | KOMENTO NÄPPÄIN | "emacs" | "vi" | "-a"]\n
|
| /freebsd-src/tools/regression/sockets/unix_bindconnect/ |
| H A D | unix_bindconnect.c | 112 if (bind(sock1, (struct sockaddr *)&sun, sizeof(sun)) < 0) { in bind_test() 124 if (bind(sock1, (struct sockaddr *)&sun, sizeof(sun)) == 0) { in bind_test() 146 if (bind(sock2, (struct sockaddr *)&sun, sizeof(sun)) == 0) { in bind_test() 166 if (bind(sock2, (struct sockaddr *)&sun, sizeof(sun)) == 0) { in bind_test() 183 if (bind(sock2, (struct sockaddr *)&sun, sizeof(sun)) < 0) { in bind_test() 238 if (bind(sock1, (struct sockaddr *)&sun, sizeof(sun)) < 0) { in connect_test()
|
| /freebsd-src/contrib/llvm-project/clang/lib/Tooling/DumpTool/ |
| H A D | ASTSrcLocProcessor.cpp | |
| /freebsd-src/sys/rpc/ |
| H A D | svc_generic.c | 83 struct t_bind bind; in svc_create() 94 bind.addr = *taddr; in svc_create() 96 bind.qlen = -1; in svc_create() 97 xprt = svc_tli_create(pool, nconf, &bind, 0, 0); in svc_create() 98 free(bind.addr.buf, M_RPC); in svc_create() 133 const struct t_bind *bindaddr, /* Local bind address */ in svc_create() 163 "svc_tli_create: could not bind to anonymous port\n"); in svc_tp_create() 172 "svc_tli_create: could not bind to requested address\n"); in svc_tp_create() 153 struct t_bind bind; svc_tp_create() local
|
| /freebsd-src/tests/sys/common/ |
| H A D | divert.py | 52 s.bind(('0.0.0.0', args.divert_port)) 59 s.bind(('0.0.0.0', args.divert_port)) 67 s.bind(('0.0.0.0', args.divert_port))
|
| /freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | LoopUnrolling.cpp | 92 declRefExpr(to(varDecl(hasType(isInteger())).bind(BindName))) in simpleCondition() 93 .bind(RefName))), in simpleCondition() 95 ignoringParenImpCasts(integerLiteral().bind("boundNum")))) in simpleCondition() 96 .bind("conditionOperator"); in simpleCondition() 152 integerLiteral().bind("initNum"))), in forLoopMatcher() 157 integerLiteral().bind("initNum")))))), in forLoopMatcher() 166 .bind("forLoop"); in forLoopMatcher()
|
| /freebsd-src/contrib/unbound/contrib/ |
| H A D | unbound.init_fedora | 44 mount --bind -n /dev/log ${rootdir}/dev/log >/dev/null 2>&1; 45 mount --bind -n /dev/urandom ${rootdir}/dev/urandom >/dev/null 2>&1; 46 mount --bind -n /var/run/unbound ${rootdir}/var/run/unbound >/dev/null 2>&1;
|