Home
last modified time | relevance | path

Searched refs:key_value (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/usr.bin/sort/
H A Dcoll.c49 static int wstrcoll(struct key_value *kv1, struct key_value *kv2, size_t offset);
50 static int gnumcoll(struct key_value*, struct key_value *, size_t offset);
51 static int monthcoll(struct key_value*, struct key_value *, size_t offset);
52 static int numcoll(struct key_value*, struct key_value *, size_t offset);
53 static int hnumcoll(struct key_value*, struct key_value *, size_
[all...]
H A Dsort.h77 struct key_value;
82 typedef int (*cmpcoll_t)(struct key_value *kv1, struct key_value *kv2, size_t offset);
H A Dcoll.h85 struct key_value { struct
94 struct key_value key[0]; argument
/openbsd-src/gnu/llvm/libcxx/utils/gdb/libcxx/
H A Dprinters.py656 for key_value in self._get_key_value(current):
657 yield "", key_value
697 key_value = _cc_field(node.cast(self.util.cast_type).dereference())
698 return [key_value["first"], key_value["second"]]
714 key_value = node.cast(self.util.cast_type).dereference()["__value_"]
715 return [key_value]
815 for key_value in self._get_key_value(next_val):
816 yield "", key_value
850 key_value = _cc_field(node)
851 return [key_value["first"], key_value["second"]]
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DProcfs.cpp38 std::pair<StringRef, StringRef> key_value = line.split(':'); in GetAvailableLogicalCoreIDs() local
39 auto key = key_value.first.trim(); in GetAvailableLogicalCoreIDs()
40 auto val = key_value.second.trim(); in GetAvailableLogicalCoreIDs()
/openbsd-src/usr.sbin/nsd/
H A Dzonec.c763 unsigned long int key_value; in svcbparam_lookup_key() local
768 key_value = strtoul(buf, &endptr, 10); in svcbparam_lookup_key()
771 && key_value <= 65535) /* no overflow */ in svcbparam_lookup_key()
772 return key_value; in svcbparam_lookup_key()
/openbsd-src/usr.sbin/unbound/sldns/
H A Dstr2wire.c1113 unsigned long int key_value; in sldns_str2wire_svcparam_key_lookup() local
1118 key_value = strtoul(buf, &endptr, 10); in sldns_str2wire_svcparam_key_lookup()
1122 && key_value <= 65535) /* no overflow */ in sldns_str2wire_svcparam_key_lookup()
1123 return key_value; in sldns_str2wire_svcparam_key_lookup()
/openbsd-src/sbin/unwind/libunbound/sldns/
H A Dstr2wire.c1113 unsigned long int key_value; in sldns_str2wire_svcparam_key_lookup() local
1118 key_value = strtoul(buf, &endptr, 10); in sldns_str2wire_svcparam_key_lookup()
1122 && key_value <= 65535) /* no overflow */ in sldns_str2wire_svcparam_key_lookup()
1123 return key_value; in sldns_str2wire_svcparam_key_lookup()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp3882 Menu(const char *name, const char *key_name, int key_value,
3979 Menu::Menu(const char *name, const char *key_name, int key_value, in Menu() argument
3982 m_key_value(key_value), m_start_col(0), m_max_submenu_name_length(0), in Menu()