Searched refs:kv (Results 1 - 25 of 46) sorted by relevance

12

/netbsd-current/external/mpl/bind/dist/lib/isccc/
H A Dalist.c162 isccc_sexpr_t *kv, *k, *elt; local
164 kv = isccc_alist_assq(alist, key);
165 if (kv == NULL) {
173 kv = isccc_sexpr_cons(k, value);
174 if (kv == NULL) {
175 isccc_sexpr_free(&kv);
178 elt = isccc_sexpr_addtolist(&alist, kv);
180 isccc_sexpr_free(&kv);
187 isccc_sexpr_free(&CDR(kv));
188 CDR(kv)
197 isccc_sexpr_t *v, *kv; local
214 isccc_sexpr_t *v, *kv; local
230 isccc_sexpr_t *kv; local
241 isccc_sexpr_t *kv, *v; local
262 isccc_sexpr_t *kv, *v; local
283 isccc_sexpr_t *elt, *kv, *k, *v; local
[all...]
H A Dcc.c209 isccc_sexpr_t *kv, *elt, *k, *v; local
217 kv = ISCCC_SEXPR_CAR(elt);
218 k = ISCCC_SEXPR_CAR(kv);
220 v = ISCCC_SEXPR_CDR(kv);
902 isccc_sexpr_t *kv, *v; local
906 kv = isccc_alist_assq(alist, key);
907 if (kv != NULL) {
908 v = ISCCC_SEXPR_CDR(kv);
924 isccc_sexpr_t *kv, *v; local
926 kv
[all...]
/netbsd-current/sys/arch/hpc/stand/hpcboot/
H A Dload_coff.cpp86 vaddr_t kv; local
94 kv = _ah->a_tstart;
97 _load_segment(kv, memsz, fileofs, filesz);
101 kv = _ah->a_dstart;
103 _load_segment(kv, memsz, fileofs, filesz);
107 kv = _ah->a_dstart + _ah->a_dsize;
110 _load_segment(kv, memsz, fileofs, filesz);
H A Dload.cpp75 vaddr_t kv; local
78 kv = ROUND(_kernend, static_cast <vsize_t>(KERNEL_PAGE_SIZE));
81 _load_segment(kv, sz, 0, sz);
155 Loader::_load_segment(vaddr_t kv, vsize_t memsz, off_t fileofs, size_t filesz) argument
158 vaddr_t kv_start = kv;
161 kv, memsz, kv + memsz, fileofs, filesz));
162 _kernend = kv + memsz;
168 _pvec_prev = _load_page(kv, fileofs,
170 kv
203 _load_memory(vaddr_t kv, vsize_t memsz, void *data) argument
243 _load_page(vaddr_t kv, off_t ofs, size_t sz, struct PageTag *prev) argument
[all...]
H A Dload_elf.cpp153 vaddr_t kv; local
162 kv = ph->p_paddr;
165 i, kv, filesz, memsz));
166 _load_segment(kv, memsz, fileofs, filesz);
167 kv += ROUND4(memsz);
171 load_symbol_block(kv);
269 ElfLoader::load_symbol_block(vaddr_t kv) argument
279 _load_memory(kv, _sym_blk.header_size, _sym_blk.header);
280 kv += _sym_blk.header_size;
284 _load_segment(kv, s
[all...]
/netbsd-current/sys/compat/netbsd32/
H A Dnetbsd32_ptrace.c166 char *kv; local
173 kv = (char *)&r32;
175 kv += uio->uio_offset;
181 error = uiomove(kv, kl, uio);
204 char *kv; local
211 kv = (char *)&r32;
213 kv += uio->uio_offset;
220 error = uiomove(kv, kl, uio);
242 char *kv; local
249 kv
[all...]
/netbsd-current/sys/dev/
H A Dkloader.c175 vaddr_t kv; local
300 kv = 0; /* XXX: -Wuninitialized */
304 kv = p->p_vaddr + ROUND4(p->p_memsz);
312 kloader_zero(kv, SELFMAG);
313 kv += SELFMAG;
342 kloader_copy(kv, &eh, sizeof(Elf_Ehdr));
343 kv += sizeof(Elf_Ehdr);
346 kloader_copy(kv, sh, eh.e_shentsize * eh.e_shnum);
347 kv += eh.e_shentsize * eh.e_shnum;
350 kloader_copy(kv, shstrta
[all...]
/netbsd-current/sys/arch/i386/i386/
H A Dprocess_machdep.c367 char *kv; local
371 kv = (char *) &r;
373 kv += uio->uio_offset;
383 error = uiomove(kv, kl, uio);
412 char *kv; local
417 kv = (char *) &r;
419 kv += uio->uio_offset;
429 error = uiomove(kv, kl, uio);
/netbsd-current/sbin/nvmectl/
H A Dlogpage.c70 kv_lookup(const struct kv_name *kv, size_t kv_count, uint32_t key) argument
75 for (i = 0; i < kv_count; i++, kv++)
76 if (kv->key == key)
77 return kv->name;
450 static struct kv_name kv[] = { local
478 name = kv_lookup(kv, __arraycount(kv), *walker);
546 const struct kv_name *kv, size_t kv_count)
564 printf(" %-30s: %jd\n", kv_lookup(kv, kv_count, ptype),
573 static const struct kv_name kv[] local
545 print_hgst_info_subpage_gen(void *buf, uint16_t subtype __unused, uint32_t size, const struct kv_name *kv, size_t kv_count) argument
593 static const struct kv_name kv[] = { local
614 static const struct kv_name kv[] = { local
751 static const struct kv_name kv[] = { local
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dstatistics.cc176 for (auto const& kv : counter_stats) {
178 const auto uc_stat = Stat.compute_(kv.second.s);
179 auto c = Counter(uc_stat, counter_stats[kv.first].c.flags,
180 counter_stats[kv.first].c.oneK);
181 data.counters[kv.first] = c;
/netbsd-current/external/gpl2/rcs/dist/src/
H A Drcstest194 sed 's/@/$/g' >a.kv <<EOF
211 sed 's/:.*\$/$/' a.kv >a.k &&
212 sed -e 's/w s [$]/w s '"$me"' $/' -e 's/[$]Locker: /&'"$me/" a.kv >a.kvl &&
213 sed s/Oz//g a.kv >a.e &&
214 sed s/Oz/N/g a.kv >a.N &&
216 sed -e 's/\$[^ ]*: //' -e 's/ \$//' a.kv >a.v &&
219 $diff a.kv a.c || { echo "#keyword expansion failed"; exit 1; }
222 cp a.kv a.o && cp a.o a.b || exit 2
226 $diff a.kv a.c || { echo "#ci -k failed"; exit 1; }
227 sed -n 's/^[^$]*\$/$/p' a.kv >
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/utils/TableGen/
H A DMveEmitter.cpp866 for (auto kv : CustomCodeGenArgs)
867 OS << " " << kv.first << " = " << kv.second << ";\n";
908 for (const auto &kv : ImmediateArgs) {
909 const ImmediateArg &IA = kv.second;
923 std::string Index = utostr(kv.first);
1133 for (const auto &kv : ScalarTypes) {
1134 const ScalarType *RT = kv.second.get();
1145 for (const auto &kv : ScalarTypes) {
1146 const ScalarType *RT = kv
[all...]
/netbsd-current/external/bsd/openldap/dist/libraries/libldap/
H A Dinit.c212 const struct ol_keyvalue *kv; local
214 for(kv = attrs[i].data;
215 kv->key != NULL;
216 kv++) {
218 if(strcasecmp(opt, kv->key) == 0) {
220 * (int*) p = kv->value;
465 const struct ol_keyvalue *kv; local
467 for(kv = attrs[i].data;
468 kv->key != NULL;
469 kv
[all...]
/netbsd-current/external/bsd/libfido2/dist/src/
H A Du2f.c444 struct cbor_pair kv[3]; local
448 memset(&kv, 0, sizeof(kv));
456 if ((kv[0].key = cbor_build_string("alg")) == NULL ||
457 (kv[0].value = cbor_build_negint8(alg_cbor)) == NULL ||
458 !cbor_map_add(item, kv[0])) {
463 if ((kv[1].key = cbor_build_string("sig")) == NULL ||
464 (kv[1].value = fido_blob_encode(sig)) == NULL ||
465 !cbor_map_add(item, kv[1])) {
470 if ((kv[
[all...]
/netbsd-current/usr.sbin/kvm_mkdb/
H A Dnlist_elf32.c333 char *kv; local
341 if ((kv = malloc(sz)) == NULL) {
345 if (sysctl(mib, 2, kv, &sz, NULL, 0) == -1) {
349 data.data = kv;
/netbsd-current/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dstatistics.cc166 for(auto const& kv : counter_stats) {
167 const auto uc_stat = Stat.compute_(kv.second.s);
168 auto c = Counter(uc_stat, counter_stats[kv.first].c.flags);
169 data.counters[kv.first] = c;
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/srp/
H A Dsrp_lib.c91 BIGNUM *kv = NULL, *gb = NULL; local
99 if ((kv = BN_new()) == NULL ||
107 || !BN_mod_mul(kv, v, k, N, bn_ctx)
108 || !BN_mod_add(B, gb, kv, N, bn_ctx)) {
114 BN_clear_free(kv);
/netbsd-current/sys/arch/sh3/sh3/
H A Dprocess_machdep.c230 char *kv; local
234 kv = (char *) &r;
236 kv += uio->uio_offset;
246 error = uiomove(kv, kl, uio);
/netbsd-current/sys/arch/powerpc/powerpc/
H A Dprocess_machdep.c241 char *kv; local
245 kv = (char *) &r;
247 kv += uio->uio_offset;
257 error = uiomove(kv, kl, uio);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DJSONBackend.cpp174 for (auto kv: instance_lists)
175 instanceof[kv.first] = std::move(kv.second);
/netbsd-current/sys/kern/
H A Dsys_process_lwpstatus.c151 char *kv; local
160 kv = buf + uio->uio_offset;
168 error = uiomove(kv, kl, uio);
/netbsd-current/lib/lua/libm/
H A Dlibm.c219 struct kv { struct
224 static const struct kv libm_const[] = {
305 const struct kv *kvp = libm_const;
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/srp/
H A Dsrp_lib.c109 BIGNUM *kv = NULL, *gb = NULL; local
117 if ((kv = BN_new()) == NULL ||
125 || !BN_mod_mul(kv, v, k, N, bn_ctx)
126 || !BN_mod_add(B, gb, kv, N, bn_ctx)) {
132 BN_clear_free(kv);
/netbsd-current/external/bsd/am-utils/dist/amd/
H A Dmapc.c138 static void mapc_clear_kvhash(kv **);
423 kv **h;
424 kv *n;
494 n = ALLOC(struct kv);
509 kv *k;
580 kv *maphash[NKVHASH];
760 mapc_clear_kvhash(kv **kvhash)
769 kv *k = kvhash[i];
771 kv *n = k->next;
859 kv *
[all...]
/netbsd-current/external/bsd/ntp/dist/ntpd/
H A Dntp_control.c3348 struct ctl_var *kv; local
3402 for (kv = ext_sys_var; kv && !(EOV & kv->flags); kv++)
3403 if (DEF & kv->flags)
3404 ctl_putdata(kv->text, strlen(kv->text),
4616 struct ctl_var * kv;
4646 kv
5090 struct ctl_var *kv; local
5187 add_var( struct ctl_var **kv, u_long size, u_short def ) argument
5213 set_var( struct ctl_var **kv, const char *data, u_long size, u_short def ) argument
[all...]

Completed in 510 milliseconds

12