Home
last modified time | relevance | path

Searched refs:in_str (Results 1 – 14 of 14) sorted by relevance

/third_party/mindspore/tests/ut/python/utils/
Dtest_initializer_fuzz.py25 def __init__(self, in_str): argument
26 a, b, c, d, e, f, g, h = in_str.strip().split()
55 def __init__(self, in_str): argument
58 a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15 = in_str.strip().split()
96 in_str = "3 6 5 6 -6 5 16 5 5 120 120 84 84 3 2"
98 net = LeNet5(in_str) # neural network
Dtest_checkparam.py49 def predict_checke_param(in_str): argument
55 a1, a2, b1, b2, b3, b4 = in_str.strip().split()
70 in_str = "0 255 0 3 32 32"
72 predict_checke_param(in_str)
/third_party/e2fsprogs/lib/support/
Dparse_qtype.c17 int parse_quota_types(const char *in_str, unsigned int *qtype_bits, in parse_quota_types() argument
24 if (!in_str) in parse_quota_types()
27 len = strlen(in_str); in parse_quota_types()
31 strcpy(buf, in_str); in parse_quota_types()
Dquotaio.h239 int parse_quota_types(const char *in_str, unsigned int *qtype_bits,
/third_party/ffmpeg/libavutil/
Dbase64.c79 int av_base64_decode(uint8_t *out, const char *in_str, int out_size) in av_base64_decode() argument
84 const uint8_t *in = in_str; in av_base64_decode()
/third_party/exfatprogs/lib/
Dlibexfat.c236 ssize_t exfat_utf16_enc(const char *in_str, __u16 *out_str, size_t out_size) in exfat_utf16_enc() argument
241 mbs_len = mbstowcs(NULL, in_str, 0); in exfat_utf16_enc()
253 if (mbstowcs(wcs, in_str, mbs_len+1) == (size_t)-1) { in exfat_utf16_enc()
283 ssize_t exfat_utf16_dec(const __u16 *in_str, size_t in_len, in exfat_utf16_dec() argument
298 wcs[wcs_len] = le16_to_cpu(in_str[i]); in exfat_utf16_dec()
306 w = le16_to_cpu(in_str[i+1]); in exfat_utf16_dec()
/third_party/exfatprogs/include/
Dlibexfat.h98 ssize_t exfat_utf16_enc(const char *in_str, __u16 *out_str, size_t out_size);
99 ssize_t exfat_utf16_dec(const __u16 *in_str, size_t in_len,
/third_party/ltp/metadata/
Dmetaparse.c144 int in_str = 0; in next_token2() local
154 if (in_str) { in next_token2()
196 in_str = 1; in next_token2()
208 if (i == 0 && !in_str) in next_token2()
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dgstglcolorconvert.c205 const gchar *in_str = gst_video_format_to_string (in_v_format); in check_conversion() local
207 GST_WARNING ("failed to convert from %s to %s", in_str, out_str); in check_conversion()
/third_party/python/Modules/_io/
Dtextio.c373 const void *in_str; in _PyIncrementalNewlineDecoder_decode() local
379 in_str = PyUnicode_DATA(output); in _PyIncrementalNewlineDecoder_decode()
390 only_lf = (memchr(in_str, '\r', kind * len) == NULL); in _PyIncrementalNewlineDecoder_decode()
398 memchr(in_str, '\n', kind * len) != NULL) { in _PyIncrementalNewlineDecoder_decode()
406 while (PyUnicode_READ(kind, in_str, i) > '\n') in _PyIncrementalNewlineDecoder_decode()
408 c = PyUnicode_READ(kind, in_str, i++); in _PyIncrementalNewlineDecoder_decode()
429 while (PyUnicode_READ(kind, in_str, i) > '\r') in _PyIncrementalNewlineDecoder_decode()
431 c = PyUnicode_READ(kind, in_str, i++); in _PyIncrementalNewlineDecoder_decode()
435 if (PyUnicode_READ(kind, in_str, i) == '\n') { in _PyIncrementalNewlineDecoder_decode()
453 const void *in_str = PyUnicode_DATA(output); in _PyIncrementalNewlineDecoder_decode() local
[all …]
/third_party/quickjs/
Dunicode_gen.c2909 int *in_str, *nfc_str, *nfd_str, *nfkc_str, *nfkd_str; in normalization_test() local
2928 in_str = get_field_str(&in_len, p, 0); in normalization_test()
2936 …buf_len = unicode_normalize((uint32_t **)&buf, (uint32_t *)in_str, in_len, UNICODE_NFD, NULL, NULL… in normalization_test()
2937 check_str("nfd", pos, in_str, in_len, buf, buf_len, nfd_str, nfd_len); in normalization_test()
2940 …buf_len = unicode_normalize((uint32_t **)&buf, (uint32_t *)in_str, in_len, UNICODE_NFKD, NULL, NUL… in normalization_test()
2941 check_str("nfkd", pos, in_str, in_len, buf, buf_len, nfkd_str, nfkd_len); in normalization_test()
2944 …buf_len = unicode_normalize((uint32_t **)&buf, (uint32_t *)in_str, in_len, UNICODE_NFC, NULL, NULL… in normalization_test()
2945 check_str("nfc", pos, in_str, in_len, buf, buf_len, nfc_str, nfc_len); in normalization_test()
2948 …buf_len = unicode_normalize((uint32_t **)&buf, (uint32_t *)in_str, in_len, UNICODE_NFKC, NULL, NUL… in normalization_test()
2949 check_str("nfkc", pos, in_str, in_len, buf, buf_len, nfkc_str, nfkc_len); in normalization_test()
[all …]
/third_party/skia/third_party/externals/imgui/
Dimgui_draw.cpp2640 …ctFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_ch… in ImFontAtlasBuildRender8bppRectFromString() argument
2645 for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) in ImFontAtlasBuildRender8bppRectFromString()
2647 out_pixel[off_x] = (in_str[off_x] == in_marker_char) ? in_marker_pixel_value : 0x00; in ImFontAtlasBuildRender8bppRectFromString()
2650 …ctFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_ch… in ImFontAtlasBuildRender32bppRectFromString() argument
2655 for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) in ImFontAtlasBuildRender32bppRectFromString()
2657 …out_pixel[off_x] = (in_str[off_x] == in_marker_char) ? in_marker_pixel_value : IM_COL32_BLACK_TRAN… in ImFontAtlasBuildRender32bppRectFromString()
Dimgui_internal.h2776 …ctFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_ch…
2777 …ctFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_ch…
/third_party/toybox/kconfig/
Dlex.zconf.c_shipped2118 * @param in_str A readable stream.
2122 void zconfset_in (FILE * in_str )
2124 zconfin = in_str ;