HomeSort by: relevance | last modified time | path
    Searched refs:ecs (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/mpl/bind/dist/lib/dns/
clientinfo.c 19 #include <dns/ecs.h>
34 dns_ecs_init(&ci->ecs);
38 dns_clientinfo_setecs(dns_clientinfo_t *ci, dns_ecs_t *ecs) {
39 if (ecs != NULL) {
40 ci->ecs = *ecs;
42 dns_ecs_init(&ci->ecs);
ecs.c 1 /* $NetBSD: ecs.c,v 1.7 2025/01/26 16:25:22 christos Exp $ */
25 #include <dns/ecs.h>
34 dns_ecs_init(dns_ecs_t *ecs) {
35 isc_netaddr_unspec(&ecs->addr);
36 ecs->source = 0;
37 ecs->scope = 0xff;
101 dns_ecs_format(const dns_ecs_t *ecs, char *buf, size_t size) {
105 REQUIRE(ecs != NULL);
109 isc_netaddr_format(&ecs->addr, buf, size);
112 snprintf(p, size - len, "/%d/%d", ecs->source
    [all...]
  /src/external/bsd/jemalloc.old/dist/src/
edata_cache.c 59 edata_cache_fast_init(edata_cache_fast_t *ecs, edata_cache_t *fallback) {
60 edata_list_inactive_init(&ecs->list);
61 ecs->fallback = fallback;
62 ecs->disabled = false;
67 edata_cache_fast_t *ecs) {
69 malloc_mutex_lock(tsdn, &ecs->fallback->mtx);
71 edata = edata_avail_remove_first(&ecs->fallback->avail);
75 edata_list_inactive_append(&ecs->list, edata);
76 atomic_load_sub_store_zu(&ecs->fallback->count, 1);
78 malloc_mutex_unlock(tsdn, &ecs->fallback->mtx)
    [all...]
  /src/external/bsd/jemalloc/dist/src/
edata_cache.c 59 edata_cache_fast_init(edata_cache_fast_t *ecs, edata_cache_t *fallback) {
60 edata_list_inactive_init(&ecs->list);
61 ecs->fallback = fallback;
62 ecs->disabled = false;
66 edata_cache_fast_try_fill_from_fallback(tsdn_t *tsdn, edata_cache_fast_t *ecs) {
68 malloc_mutex_lock(tsdn, &ecs->fallback->mtx);
70 edata = edata_avail_remove_first(&ecs->fallback->avail);
74 edata_list_inactive_append(&ecs->list, edata);
75 atomic_load_sub_store_zu(&ecs->fallback->count, 1);
77 malloc_mutex_unlock(tsdn, &ecs->fallback->mtx)
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
clientinfo.c 19 #include <dns/ecs.h>
30 dns_clientinfo_init(dns_clientinfo_t *ci, void *data, dns_ecs_t *ecs,
35 if (ecs != NULL) {
36 ci->ecs = *ecs;
38 dns_ecs_init(&ci->ecs);
ecs.c 1 /* $NetBSD: ecs.c,v 1.1 2024/02/18 20:57:31 christos Exp $ */
26 #include <dns/ecs.h>
35 dns_ecs_init(dns_ecs_t *ecs) {
36 isc_netaddr_unspec(&ecs->addr);
37 ecs->source = 0;
38 ecs->scope = 0xff;
102 dns_ecs_format(const dns_ecs_t *ecs, char *buf, size_t size) {
106 REQUIRE(ecs != NULL);
110 isc_netaddr_format(&ecs->addr, buf, size);
113 snprintf(p, size - len, "/%d/%d", ecs->source
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
infrun.c 119 struct execution_control_state *ecs);
2140 static void keep_going_pass_signal (struct execution_control_state *ecs);
2141 static void prepare_to_wait (struct execution_control_state *ecs);
2262 execution_control_state ecs (tp);
2263 keep_going_pass_signal (&ecs);
2265 if (!ecs.wait_some_more)
3582 execution_control_state ecs (tp);
3584 keep_going_pass_signal (&ecs);
3585 if (!ecs.wait_some_more)
3857 static void handle_inferior_event (struct execution_control_state *ecs);
4399 execution_control_state ecs; local
4601 execution_control_state ecs; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
infrun.c 121 struct execution_control_state *ecs);
2146 static void keep_going_pass_signal (struct execution_control_state *ecs);
2147 static void prepare_to_wait (struct execution_control_state *ecs);
2268 execution_control_state ecs (tp);
2269 keep_going_pass_signal (&ecs);
2271 if (!ecs.wait_some_more)
3588 execution_control_state ecs (tp);
3590 keep_going_pass_signal (&ecs);
3591 if (!ecs.wait_some_more)
3863 static void handle_inferior_event (struct execution_control_state *ecs);
4389 execution_control_state ecs; local
4591 execution_control_state ecs; local
    [all...]
  /src/external/mpl/bind/dist/lib/dns/include/dns/
clientinfo.h 47 #include <dns/ecs.h>
64 dns_ecs_t ecs; member in struct:dns_clientinfo
94 * database version to 'versionp'. ECS data is initialized to 0/0/0.
98 dns_clientinfo_setecs(dns_clientinfo_t *ci, dns_ecs_t *ecs);
100 * Set the ECS client data associated with a clientinfo object 'ci'.
101 * If 'ecs' is NULL, initialize ci->ecs to 0/0/0; otherwise copy it.
ecs.h 1 /* $NetBSD: ecs.h,v 1.10 2025/01/26 16:25:27 christos Exp $ */
54 dns_ecs_init(dns_ecs_t *ecs);
56 * Initialize a DNS ECS structure.
59 * \li 'ecs' is not NULL and points to a valid dns_ecs structure.
65 * Determine whether two ECS address prefixes are equal (except the
74 dns_ecs_format(const dns_ecs_t *ecs, char *buf, size_t size);
76 * Format an ECS record as text. Result is guaranteed to be null-terminated.
79 * \li 'ecs' is not NULL.
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
clientinfo.h 48 #include <dns/ecs.h>
65 dns_ecs_t ecs; member in struct:dns_clientinfo
92 dns_clientinfo_init(dns_clientinfo_t *ci, void *data, dns_ecs_t *ecs,
ecs.h 1 /* $NetBSD: ecs.h,v 1.1 2024/02/18 20:57:36 christos Exp $ */
55 dns_ecs_init(dns_ecs_t *ecs);
57 * Initialize a DNS ECS structure.
60 * \li 'ecs' is not NULL and points to a valid dns_ecs structure.
66 * Determine whether two ECS address prefixes are equal (except the
75 dns_ecs_format(const dns_ecs_t *ecs, char *buf, size_t size);
77 * Format an ECS record as text. Result is guaranteed to be null-terminated.
80 * \li 'ecs' is not NULL.
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
edata_cache.h 43 void edata_cache_fast_init(edata_cache_fast_t *ecs, edata_cache_t *fallback);
44 edata_t *edata_cache_fast_get(tsdn_t *tsdn, edata_cache_fast_t *ecs);
45 void edata_cache_fast_put(tsdn_t *tsdn, edata_cache_fast_t *ecs,
47 void edata_cache_fast_disable(tsdn_t *tsdn, edata_cache_fast_t *ecs);
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
edata_cache.h 43 void edata_cache_fast_init(edata_cache_fast_t *ecs, edata_cache_t *fallback);
44 edata_t *edata_cache_fast_get(tsdn_t *tsdn, edata_cache_fast_t *ecs);
45 void edata_cache_fast_put(tsdn_t *tsdn, edata_cache_fast_t *ecs,
47 void edata_cache_fast_disable(tsdn_t *tsdn, edata_cache_fast_t *ecs);
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
edata_cache.h 44 void edata_cache_fast_init(edata_cache_fast_t *ecs, edata_cache_t *fallback);
45 edata_t *edata_cache_fast_get(tsdn_t *tsdn, edata_cache_fast_t *ecs);
47 tsdn_t *tsdn, edata_cache_fast_t *ecs, edata_t *edata);
48 void edata_cache_fast_disable(tsdn_t *tsdn, edata_cache_fast_t *ecs);
  /src/external/bsd/jemalloc/include/jemalloc/internal/
edata_cache.h 44 void edata_cache_fast_init(edata_cache_fast_t *ecs, edata_cache_t *fallback);
45 edata_t *edata_cache_fast_get(tsdn_t *tsdn, edata_cache_fast_t *ecs);
47 tsdn_t *tsdn, edata_cache_fast_t *ecs, edata_t *edata);
48 void edata_cache_fast_disable(tsdn_t *tsdn, edata_cache_fast_t *ecs);
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
xgettext-perl-1 75 printf "%s\n", gettext 'ecs\tasy';
76 printf "%s\n", gettext 'ecs\\tasy';
77 printf "%s\n", gettext 'ecs\\\tasy';
78 printf "%s\n", gettext 'ecs\\\\tasy';
79 printf "%s\n", gettext 'ecs\\\\\tasy';
80 printf "%s\n", gettext q(ecs\tasy);
81 printf "%s\n", gettext q(ecs\\tasy);
82 printf "%s\n", gettext q(ecs\\\tasy);
83 printf "%s\n", gettext q(ecs\\\\tasy);
84 printf "%s\n", gettext q(ecs\\\\\tasy)
    [all...]
  /src/external/bsd/unbound/dist/edns-subnet/
subnetmod.c 90 /** new query for ecs module */
105 /** Add ecs struct to edns list, after parsing it to wire format. */
107 subnet_ecs_opt_list_append(struct ecs_data* ecs, struct edns_option** list,
113 if(ecs->subnet_validdata) {
114 log_assert(ecs->subnet_addr_fam == EDNSSUBNET_ADDRFAM_IP4 ||
115 ecs->subnet_addr_fam == EDNSSUBNET_ADDRFAM_IP6);
116 log_assert(ecs->subnet_addr_fam != EDNSSUBNET_ADDRFAM_IP4 ||
117 ecs->subnet_source_mask <= INET_SIZE*8);
118 log_assert(ecs->subnet_addr_fam != EDNSSUBNET_ADDRFAM_IP6 ||
119 ecs->subnet_source_mask <= INET6_SIZE*8)
475 struct ecs_data *ecs = &sq->ecs_client_in; local
    [all...]
subnetmod.h 153 /** Check whether response from server contains ECS record, if so, skip cache
157 /** Remove ECS record from back_out when query resulted in REFUSED response. */
164 /** Add ecs struct to edns list, after parsing it to wire format. */
165 void subnet_ecs_opt_list_append(struct ecs_data* ecs, struct edns_option** list,
169 void subnet_option_from_ss(struct sockaddr_storage *ss, struct ecs_data* ecs,
  /src/external/mpl/bind/dist/lib/ns/include/ns/
client.h 71 #include <dns/ecs.h>
207 dns_ecs_t ecs; /*%< EDNS client subnet sent by client */ member in struct:ns_client
259 #define NS_CLIENTATTR_HAVEECS 0x04000 /*%< received an ECS option */
  /src/external/mpl/bind/dist/lib/ns/
client.c 279 dns_ecs_init(&client->ecs);
1043 unsigned char ecs[ECS_SIZE]; local
1118 (client->ecs.addr.family == AF_INET ||
1119 client->ecs.addr.family == AF_INET6))
1128 plen = client->ecs.source;
1133 switch (client->ecs.addr.family) {
1137 memmove(addr, &client->ecs.addr.type, addrl);
1142 memmove(addr, &client->ecs.addr.type, addrl);
1148 isc_buffer_init(&buf, ecs, sizeof(ecs));
    [all...]
  /src/external/mpl/bind/lib/libdns/
Makefile 47 clientinfo.c compress.c client.c dyndb.c ecs.c db.c \
  /src/external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/
driver.c 493 if (clientinfo->ecs.addr.family != AF_UNSPEC) {
494 dns_ecs_format(&clientinfo->ecs, ecsbuf,
502 snprintf(buf + i, sizeof(buf) - i - 1, " ECS %s", ecsbuf);
  /src/sys/dev/pci/
yds.c 403 size_t pcs, rcs, ecs, ws, memsize; local
414 ecs = YREAD4(sc, YDS_EFFECT_CTRLSIZE) * sizeof(uint32_t);
420 DPRINTF(("eff control size : %d\n", (unsigned int)ecs));
422 __USE(ecs);
478 cb += N_EFFECT_SLOT_CTRL * N_EFFECT_SLOT_CTRL_BANK * ecs;
  /src/external/bsd/unbound/dist/services/
mesh.c 777 * attached its own ECS data. */
806 /* Use the client's ECS data */
814 * it is decided whether to include an ECS option or not.
2120 struct edns_option* ecs; local
2139 /* Make also a copy of the ecs option if any */
2140 if((ecs = edns_opt_list_find(
2144 ecs->opt_code, ecs->opt_len,
2145 ecs->opt_data,

Completed in 64 milliseconds

1 2