Home
last modified time | relevance | path

Searched refs:byte_string (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/lib/libcbor/src/cbor/
H A Dstreaming.c215 CLAIM_BYTES_AND_INVOKE(byte_string, length, 0); in cbor_stream_decode()
220 READ_CLAIM_INVOKE(byte_string, _cbor_load_uint8, 1); in cbor_stream_decode()
223 READ_CLAIM_INVOKE(byte_string, _cbor_load_uint16, 2); in cbor_stream_decode()
226 READ_CLAIM_INVOKE(byte_string, _cbor_load_uint32, 4); in cbor_stream_decode()
229 READ_CLAIM_INVOKE(byte_string, _cbor_load_uint64, 8); in cbor_stream_decode()
H A Dcallbacks.h73 cbor_string_callback byte_string; member
H A Dcallbacks.c92 .byte_string = cbor_null_byte_string_callback,
/openbsd-src/gnu/llvm/libcxx/include/
H A Dlocale90 typedef basic_string<char, char_traits<char>, Byte_alloc> byte_string;
101 explicit wstring_convert(const byte_string& byte_err, // explicit in C++14
109 wide_string from_bytes(const byte_string& str);
112 byte_string to_bytes(Elem wchar);
113 byte_string to_bytes(const Elem* wptr);
114 byte_string to_bytes(const wide_string& wstr);
115 byte_string to_bytes(const Elem* first, const Elem* last);
3606 typedef basic_string<char, char_traits<char>, _Byte_alloc> byte_string;
3612 byte_string __byte_err_string_;
3634 _LIBCPP_EXPLICIT_AFTER_CXX11 wstring_convert(const byte_string& __byte_err,
[all …]
/openbsd-src/gnu/usr.bin/perl/
H A Dlocale.c420 # define MultiByteToWideChar(cp, flags, byte_string, m1, wstring, req_size) \
422 mbsrtowcs(wstring, &(byte_string), req_size, NULL) + 1)
423 # define WideCharToMultiByte(cp, flags, wstring, m1, byte_string, \
426 wcsrtombs(byte_string, &(wstring), req_size, NULL) + 1)
4181 S_Win_byte_string_to_wstring(const UINT code_page, const char * byte_string) in S_my_langinfo_i()
4185 int req_size = MultiByteToWideChar(code_page, 0, byte_string, -1, NULL, 0); in S_my_langinfo_i()
4194 if (! MultiByteToWideChar(code_page, 0, byte_string, -1, wstring, req_size)) in S_my_langinfo_i()
4215 char *byte_string; in S_my_langinfo_i()
4216 Newx(byte_string, req_size, char); in S_my_langinfo_i()
4218 if (! WideCharToMultiByte(code_page, 0, wstring, -1, byte_string, in S_my_langinfo_i()
2586 S_Win_byte_string_to_wstring(const UINT code_page,const char * byte_string) S_Win_byte_string_to_wstring() argument
2619 char *byte_string; S_Win_wstring_to_byte_string() local
[all...]
H A Dproto.h7228 S_Win_byte_string_to_wstring(const UINT code_page, const char *byte_string);
H A Dembed.fnc4595 |NULLOK const char *byte_string
/openbsd-src/lib/libcbor/src/
H A Dcbor.c26 .byte_string = &cbor_builder_byte_string_callback, in cbor_load()