/freebsd/sys/compat/linuxkpi/common/include/net/ |
H A D | addrconf.h | 38 addrconf_addr_solict_mult(struct in6_addr *ia6, struct in6_addr *sol) in addrconf_addr_solict_mult() argument 41 sol->s6_addr16[0] = IPV6_ADDR_INT16_MLL; in addrconf_addr_solict_mult() 42 sol->s6_addr16[1] = 0; in addrconf_addr_solict_mult() 43 sol->s6_addr32[1] = 0; in addrconf_addr_solict_mult() 44 sol->s6_addr32[2] = IPV6_ADDR_INT32_ONE; in addrconf_addr_solict_mult() 45 sol->s6_addr32[3] = ia6->s6_addr32[3]; in addrconf_addr_solict_mult() 46 sol->s6_addr8[12] = 0xff; in addrconf_addr_solict_mult()
|
/freebsd/sys/sys/ |
H A D | socketvar.h | 252 #define SOLISTENING(sol) (((sol)->so_options & SO_ACCEPTCONN) != 0) argument 253 #define SOLISTEN_LOCK(sol) do { \ argument 254 mtx_lock(&(sol)->so_lock); \ 255 KASSERT(SOLISTENING(sol), \ 256 ("%s: %p not listening", __func__, (sol))); \ 258 #define SOLISTEN_TRYLOCK(sol) mtx_trylock(&(sol)->so_lock) argument 259 #define SOLISTEN_UNLOCK(sol) do { \ argument 260 KASSERT(SOLISTENING(sol), \ 261 ("%s: %p not listening", __func__, (sol))); \ 262 mtx_unlock(&(sol)->so_lock); \ [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbIndex.cpp | 169 SegmentOffsetLength sol; in FindSymbolsByVa() local 171 sol = GetSegmentOffsetAndLength(sym); in FindSymbolsByVa() 173 sol.so = GetSegmentAndOffset(sym); in FindSymbolsByVa() 175 lldb::addr_t start = MakeVirtualAddress(sol.so.segment, sol.so.offset); in FindSymbolsByVa() 179 lldb::addr_t end = start + sol.length; in FindSymbolsByVa()
|
H A D | SymbolFileNativePDB.cpp | 483 SegmentOffsetLength sol = GetSegmentOffsetAndLength(sym_record); in CreateFunction() local 486 m_index->MakeVirtualAddress(sol.so.segment, sol.so.offset); in CreateFunction() 490 AddressRange func_range(file_vm_addr, sol.length, in CreateFunction() 1280 SegmentOffsetLength sol = GetSegmentOffsetAndLength(func_record); in ParseLineTable() local 1282 m_index->MakeVirtualAddress(sol.so.segment, sol.so.offset); in ParseLineTable() 1286 AddressRange func_range(file_vm_addr, sol.length, in ParseLineTable()
|
/freebsd/usr.bin/calendar/ |
H A D | sunpos.c | 443 int eq[2], sol[2]; in main() local 444 equinoxsolstice(strtol(argv[1], NULL, 10), 0.0, eq, sol); in main() 445 printf("%d - %d - %d - %d\n", eq[0], sol[0], eq[1], sol[1]); in main()
|
/freebsd/usr.sbin/rtadvd/ |
H A D | rtadvd.c | 909 struct soliciter *sol; in rs_input() local 970 sol = (struct soliciter *)malloc(sizeof(*sol)); in rs_input() 971 if (sol) { in rs_input() 972 sol->sol_addr = *from; in rs_input() 974 sol->sol_addr.sin6_flowinfo = 0; in rs_input() 975 TAILQ_INSERT_TAIL(&rai->rai_soliciter, sol, sol_next); in rs_input() 1657 struct soliciter *sol; in ra_output() local 1771 while ((sol = TAILQ_FIRST(&rai->rai_soliciter)) != NULL) { in ra_output() 1772 TAILQ_REMOVE(&rai->rai_soliciter, sol, sol_nex in ra_output() [all...] |
H A D | config.c | 290 struct soliciter *sol; in rm_rainfo() local 308 while ((sol = TAILQ_FIRST(&rai->rai_soliciter)) != NULL) { in rm_rainfo() 309 TAILQ_REMOVE(&rai->rai_soliciter, sol, sol_next); in rm_rainfo() 310 free(sol); in rm_rainfo()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_acl.c | 1146 int numfields, fields, n, r, sol, ret; in archive_acl_from_text_w() local 1195 sol = 0; in archive_acl_from_text_w() 1267 sol = 1; in archive_acl_from_text_w() 1296 if (permset == 0 && !ismode_w(field[n + 2 - sol].start, in archive_acl_from_text_w() 1297 field[n + 2 - sol].end, &permset)) { in archive_acl_from_text_w() 1636 int numfields, fields, n, r, sol, ret; in archive_acl_from_text_nl() local 1685 sol = 0; in archive_acl_from_text_nl() 1762 sol = 1; in archive_acl_from_text_nl() 1791 if (permset == 0 && !ismode(field[n + 2 - sol].start, in archive_acl_from_text_nl() 1792 field[n + 2 - sol].end, &permset)) { in archive_acl_from_text_nl()
|
/freebsd/sys/dev/syscons/ |
H A D | scmouse.c | 531 int sol; in mouse_cut_word() local 544 sol = rounddown(scp->mouse_pos, scp->xsize); in mouse_cut_word() 545 eol = sol + scp->xsize; in mouse_cut_word() 549 for (j = scp->mouse_pos; j >= sol; --j) { in mouse_cut_word() 563 for (j = scp->mouse_pos; j >= sol; --j) { in mouse_cut_word()
|
/freebsd/contrib/tcpdump/doc/ |
H A D | README.solaris.md | 33 For reference, the tests were done on a VM booted from `sol-11_4-vbox.ova`
|
/freebsd/sys/kern/ |
H A D | uipc_socket.c | 1556 solisten_wakeup(struct socket *sol) argument 1559 if (sol->sol_upcall != NULL) 1560 (void )sol->sol_upcall(sol, sol->sol_upcallarg, M_NOWAIT); 1562 selwakeuppri(&sol->so_rdsel, PSOCK); 1563 KNOTE_LOCKED(&sol->so_rdsel.si_note, 0); 1565 SOLISTEN_UNLOCK(sol); 1566 wakeup_one(&sol->sol_comp); 1567 if ((sol->so_state & SS_ASYNC) && sol->so_sigio != NULL) 1568 pgsigio(&sol->so_sigio, SIGIO, 0);
|
/freebsd/crypto/openssl/crypto/perlasm/ |
H A D | README.md | 18 `cpp`, `sol`, `a.out`, `elf` or `win32`.
|
/freebsd/contrib/expat/lib/ |
H A D | xmltok_impl.c | 675 goto sol; in PREFIX() 697 sol: in PREFIX() 786 goto sol; in PREFIX() 805 sol: in PREFIX()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | zstd_opt.c | 773 static U32 ZSTD_totalLen(ZSTD_optimal_t sol) in ZSTD_totalLen() argument 775 return sol.litlen + sol.mlen; in ZSTD_totalLen()
|
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | zstd_opt.c | 1014 static U32 ZSTD_totalLen(ZSTD_optimal_t sol) in ZSTD_totalLen() argument 1016 return sol.litlen + sol.mlen; in ZSTD_totalLen()
|
/freebsd/sys/contrib/device-tree/src/arm/aspeed/ |
H A D | aspeed-bmc-facebook-harma.dts | 569 /*D0-D7*/ "","","sol-uart-select","","","","","",
|
/freebsd/contrib/tcsh/ |
H A D | Ported | 27 CONFIG : sol*
|
/freebsd/sys/dev/ocs_fc/ |
H A D | sli4.h | 4051 sol:1;
|
H A D | ocs_hw.c | 9176 (read_fcf->fcf_entry.val && !read_fcf->fcf_entry.sol)) { in ocs_hw_cb_read_fcf()
|
/freebsd/contrib/tzdata/ |
H A D | southamerica | 1452 # sol" ("It was dawning in the middle of the night, the buses went to class
|
H A D | northamerica | 2591 # http://www.unioncancun.mx/articulo/2014/12/04/medio-ambiente/congreso-aprueba-una-hora-mas-de-sol-en-qroo
|
/freebsd/share/dict/ |
H A D | web2a | 26384 g sol re ut 27239 half sol 56913 sol-fa 56914 sol-faer 56915 sol-faing 56916 sol-faist 56917 sol-fa syllables 56945 sol-lunar 65436 tonic sol-fa 65437 tonic sol-faist
|
H A D | web2 | 184593 sol
|
/freebsd/share/termcap/ |
H A D | termcap | 872 sol:\
|
/freebsd/contrib/ncurses/misc/ |
H A D | terminfo.src | 25342 # * Replaced sol entry with sol1 and sol2. 25538 # vic20, dg1, act5s, netx, smartvid, smarterm, sol, sol2, dt200,
|