HomeSort by relevance Sort by last modified time
    Searched defs:in_bytes (Results 1 - 6 of 6) sorted by null

  /external/curl/src/
tool_convert.c 53 size_t res, in_bytes, out_bytes; local
65 in_bytes = out_bytes = length;
66 res = iconv(outbound_cd, &input_ptr, &in_bytes,
68 if((res == (size_t)-1) || (in_bytes != 0)) {
83 size_t res, in_bytes, out_bytes; local
95 in_bytes = out_bytes = length;
96 res = iconv(inbound_cd, &input_ptr, &in_bytes,
98 if((res == (size_t)-1) || (in_bytes != 0)) {
  /external/curl/lib/
non-ascii.c 100 size_t in_bytes, out_bytes, rc; local
119 in_bytes = out_bytes = length;
120 rc = iconv(data->outbound_cd, (const char**)&input_ptr, &in_bytes,
122 if((rc == ICONV_ERROR) || (in_bytes != 0)) {
160 size_t in_bytes, out_bytes, rc; local
179 in_bytes = out_bytes = length;
180 rc = iconv(data->inbound_cd, (const char **)&input_ptr, &in_bytes,
182 if((rc == ICONV_ERROR) || (in_bytes != 0)) {
221 size_t in_bytes, out_bytes, rc; local
240 in_bytes = out_bytes = length
    [all...]
  /external/dbus/bus/
stats.c 264 dbus_uint32_t in_messages, in_bytes, in_fds, in_peak_bytes, in_peak_fds; local
315 &in_messages, &in_bytes, &in_fds,
321 !asv_add_uint32 (&iter, &arr_iter, "IncomingBytes", in_bytes) ||
  /external/boringssl/src/ssl/
s3_lib.c 435 const uint8_t *in_bytes = in; local
436 memcpy(ctx->tlsext_tick_key_name, in_bytes, 16);
437 memcpy(ctx->tlsext_tick_hmac_key, in_bytes + 16, 16);
438 memcpy(ctx->tlsext_tick_aes_key, in_bytes + 32, 16);
  /packages/apps/Gallery2/jni_jpegstream/src/
jpegstream.cpp 232 int8_t* in_bytes = static_cast<int8_t*>(in_buf); local
235 in_bytes += off;
241 written = w_ptr->write(in_bytes, in_len);
257 int8_t* in_bytes = static_cast<int8_t*>(in_buf); local
265 read = r_ptr->read(in_bytes, off, in_len);
  /external/libpng/contrib/tools/
pngfix.c 2285 png_uint_32 in_bytes = 0; local
    [all...]

Completed in 330 milliseconds