HomeSort by relevance Sort by last modified time
    Searched defs:in_len (Results 1 - 25 of 31) sorted by null

1 2

  /external/curl/lib/
idn_win32.c 96 size_t in_len = wcslen(in_w) + 1; local
98 int chars = IdnToUnicode(0, in_w, curlx_uztosi(in_len),
  /external/libmicrohttpd/src/microhttpd/
base64.c 32 size_t in_len = strlen (src); local
36 if (in_len % 4)
41 result = dest = malloc(in_len / 4 * 3 + 1);
  /external/ltp/testcases/kernel/device-drivers/dev_sim_framework/kernel_space/
tmod.h 55 in_len, and in_data as the actual structure. */
58 int in_len; // input data length member in struct:tmod_interface
  /external/strace/tests/
ioctl_sock_gifconf.c 55 print_ifconf(struct ifconf *ifc, int in_len, char *in_buf, long rc)
59 print_ifc_len(in_len);
61 if (in_len != ifc->ifc_len) {
109 int in_len; local
114 in_len = ifc->ifc_len;
123 print_ifconf(ifc, in_len, in_buf, rc);
  /external/strace/tests-m32/
ioctl_sock_gifconf.c 55 print_ifconf(struct ifconf *ifc, int in_len, char *in_buf, long rc)
59 print_ifc_len(in_len);
61 if (in_len != ifc->ifc_len) {
109 int in_len; local
114 in_len = ifc->ifc_len;
123 print_ifconf(ifc, in_len, in_buf, rc);
  /external/strace/tests-mx32/
ioctl_sock_gifconf.c 55 print_ifconf(struct ifconf *ifc, int in_len, char *in_buf, long rc)
59 print_ifc_len(in_len);
61 if (in_len != ifc->ifc_len) {
109 int in_len; local
114 in_len = ifc->ifc_len;
123 print_ifconf(ifc, in_len, in_buf, rc);
  /external/webrtc/webrtc/base/
transformadapter.cc 64 size_t in_len = len_; local
66 StreamResult result = transform_->Transform(buffer_, &in_len,
84 len_ -= in_len;
86 memmove(buffer_, buffer_ + in_len, len_);
114 size_t in_len = data_len; local
116 StreamResult result = transform_->Transform(data, &in_len,
132 bytes_written = in_len;
  /frameworks/base/tools/aapt2/io/
Util.cpp 87 size_t in_len; local
88 while (in->Next(&in_buffer, &in_len)) {
95 const size_t bytes_to_copy = in_len < out_len ? in_len : out_len;
98 in->BackUp(in_len - bytes_to_copy);
105 size_t in_len = in.size(); local
106 while (in_len != 0) {
113 const size_t bytes_to_copy = in_len < out_len ? in_len : out_len;
117 in_len -= bytes_to_copy
    [all...]
  /external/ltp/testcases/kernel/device-drivers/usb/tusb/
tusb.h 41 int in_len; // input data length member in struct:tusb_interface
  /external/boringssl/src/crypto/base64/
base64_test.cc 113 const size_t in_len = strlen(in); local
115 for (size_t i = 0; i < in_len; i++) {
  /prebuilts/tools/common/m2/repository/com/android/tools/external/liblzf/1.0/
liblzf-1.0.jar 
  /external/ltp/testcases/kernel/device-drivers/agp/kernel_space/
tagp.h 74 in_len, and in_data as the actual structure. */
77 int in_len; // input data length member in struct:tagp_interface
  /external/ltp/testcases/kernel/device-drivers/base/tbase/
tbase.h 63 int in_len; // input data length member in struct:tmod_interface
  /external/syslinux/lzo/src/
stats1a.h 108 long in_len; member in struct:__anon38516
stats1b.h 105 long in_len; member in struct:__anon38517
  /external/boringssl/src/crypto/bn_extra/
convert.c 113 // decode_hex decodes |in_len| bytes of hex data from |in| and updates |bn|.
114 static int decode_hex(BIGNUM *bn, const char *in, int in_len) {
115 if (in_len > INT_MAX/4) {
119 // |in_len| is the number of hex digits.
120 if (!bn_expand(bn, in_len * 4)) {
125 while (in_len > 0) {
128 if (todo > in_len) {
129 todo = in_len;
135 char c = in[in_len - j];
153 in_len -= todo
429 const size_t in_len = ((size_t)in[0] << 24) | local
    [all...]
  /external/sqlite/android/
PhoneNumberUtils.cpp 454 int in_len = strlen(in); local
457 for (int i = in_len; --i >= 0;) {
  /external/syslinux/lzo/
prepcore.c 59 lzo1x_999_compress_internal(const lzo_bytep in, lzo_uint in_len,
71 lzo1y_999_compress_internal(const lzo_bytep in, lzo_uint in_len,
176 lzo_uint in_len, infile_len, start, offset, soff; local
247 in_len = infile_len - offset;
248 best_len = in_len;
254 uncompressed_checksum = lzo_adler32(uncompressed_checksum, in, in_len);
261 r = lzo1x_999_compress_internal(in, in_len, out, &out_len, wrkmem,
277 if (best_len >= in_len) {
287 r = lzo1x_999_compress_internal(in, in_len, out, &out_len, wrkmem,
300 memset(in, 0, in_len);
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c 398 size_t tls_in_len, in_len; local
401 in_len = in_data ? wpabuf_len(in_data) : 0;
403 if (tls_in_len + in_len == 0) {
406 "tls_in_left=%lu tls_in_len=%lu in_len=%lu",
409 (unsigned long) in_len);
414 if (tls_in_len + in_len > 65536) {
425 if (in_len > data->tls_in_left) {
433 if (wpabuf_resize(&data->tls_in, in_len) < 0) {
441 data->tls_in_left -= in_len;
992 "data (in_len=%lu)"
    [all...]
  /packages/apps/Gallery2/jni_jpegstream/src/
jpegstream.cpp 233 int32_t in_len = static_cast<int32_t>(inCount); local
241 written = w_ptr->write(in_bytes, in_len);
258 int32_t in_len = static_cast<int32_t>(inCount); local
265 read = r_ptr->read(in_bytes, off, in_len);
  /external/boringssl/src/crypto/bytestring/
bytestring_test.cc 647 size_t in_len; member in struct:ImplicitStringTest
670 SCOPED_TRACE(Bytes(test.in, test.in_len));
673 CBS_init(&in, reinterpret_cast<const uint8_t *>(test.in), test.in_len);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
binascii.c 738 Py_ssize_t in_len, out_len, out_len_left; local
743 in_len = pin.len;
745 assert(in_len >= 0);
748 if ( in_len == 0 ) {
752 else if (in_len > PY_SSIZE_T_MAX / 2) {
758 out_len = in_len*2;
772 if ( --in_len < 0 ) { \
817 while( in_len > 0 ) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
binascii.c 751 Py_ssize_t in_len, out_len, out_len_left; local
756 in_len = pin.len;
758 assert(in_len >= 0);
761 if ( in_len == 0 ) {
765 else if (in_len > PY_SSIZE_T_MAX / 2) {
771 out_len = in_len*2;
785 if ( --in_len < 0 ) { \
830 while( in_len > 0 ) {
    [all...]
  /external/python/cpython2/Modules/
binascii.c 738 Py_ssize_t in_len, out_len, out_len_left; local
743 in_len = pin.len;
745 assert(in_len >= 0);
748 if ( in_len == 0 ) {
752 else if (in_len > PY_SSIZE_T_MAX / 2) {
758 out_len = in_len*2;
772 if ( --in_len < 0 ) { \
817 while( in_len > 0 ) {
    [all...]
  /external/python/cpython3/Modules/
binascii.c 795 Py_ssize_t in_len; local
799 in_len = data->len;
802 assert(in_len >= 0);
805 if ( in_len == 0 )
807 else if (in_len > PY_SSIZE_T_MAX / 2)
811 out_data = _PyBytesWriter_Alloc(&writer, in_len);
824 if ( --in_len < 0 ) { \
855 while( in_len > 0 ) {
    [all...]

Completed in 741 milliseconds

1 2