Searched refs:textlen (Results 1 – 8 of 8) sorted by relevance
/external/nanopb-c/tests/cyclic_messages/ |
D | encode_cyclic_callback.c | 63 int textlen; in encode_dictionary() local 74 textlen = strchr(p, '\'') - p; in encode_dictionary() 75 strncpy(pair.key, p, textlen); in encode_dictionary() 76 pair.key[textlen] = 0; in encode_dictionary() 77 p += textlen + 2; in encode_dictionary() 92 textlen = strchr(p, '\'') - p; in encode_dictionary() 93 strncpy(pair.stringValue, p, textlen); in encode_dictionary() 94 pair.stringValue[textlen] = 0; in encode_dictionary()
|
/external/grpc-grpc/third_party/nanopb/tests/cyclic_messages/ |
D | encode_cyclic_callback.c | 63 int textlen; in encode_dictionary() local 74 textlen = strchr(p, '\'') - p; in encode_dictionary() 75 strncpy(pair.key, p, textlen); in encode_dictionary() 76 pair.key[textlen] = 0; in encode_dictionary() 77 p += textlen + 2; in encode_dictionary() 92 textlen = strchr(p, '\'') - p; in encode_dictionary() 93 strncpy(pair.stringValue, p, textlen); in encode_dictionary() 94 pair.stringValue[textlen] = 0; in encode_dictionary()
|
/external/usrsctp/usrsctplib/netinet/ |
D | sctp_auth.c | 900 uint8_t *text, uint32_t textlen) argument 904 SCTP_SHA1_UPDATE(&ctx->sha1, text, textlen); 908 SCTP_SHA256_UPDATE(&ctx->sha256, text, textlen); 950 uint8_t *text, uint32_t textlen, uint8_t *digest) argument 961 (textlen == 0) || (digest == NULL)) { 995 sctp_hmac_update(hmac_algo, &ctx, text, textlen); 1092 uint32_t textlen, uint8_t *digest) argument 1100 if ((key == NULL) || (text == NULL) || (textlen == 0) || 1120 return (sctp_hmac(hmac_algo, key->key, key->keylen, text, textlen, 2059 uint32_t keylen, uint8_t *text, uint32_t textlen, argument [all …]
|
D | sctp_auth.h | 172 uint8_t *text, uint32_t textlen, uint8_t *digest); 174 uint8_t *text, uint32_t textlen, uint8_t *digest);
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_debug.c | 859 unsigned textlen; member 905 inst->textlen = inst_end - disasm; in si_add_split_disasm() 982 fprintf(f, "%.*s [PC=0x%" PRIx64 ", size=%u]\n", inst->textlen, inst->text, inst->addr, in si_print_annotated_shader()
|
/external/python/cpython2/Modules/_io/ |
D | textio.c | 1255 Py_ssize_t textlen; in textiowrapper_write() local 1274 textlen = PyUnicode_GetSize(text); in textiowrapper_write() 1344 return PyLong_FromSsize_t(textlen); in textiowrapper_write()
|
/external/libcups/cups/ |
D | ppd.c | 2869 textlen; /* Length of text */ in ppd_read() local 3293 textlen = ppd_decode(text); in ppd_read() 3295 if (textlen > PPD_MAX_TEXT && pg->ppd_conform == PPD_CONFORM_STRICT) in ppd_read()
|
/external/python/cpython3/Modules/_io/ |
D | textio.c | 1623 Py_ssize_t textlen; in _io_TextIOWrapper_write_impl() local 1638 textlen = PyUnicode_GET_LENGTH(text); in _io_TextIOWrapper_write_impl() 1739 return PyLong_FromSsize_t(textlen); in _io_TextIOWrapper_write_impl()
|