Searched defs:n_bytes (Results 1 - 10 of 10) sorted by relevance

/external/openssh/
H A Dttymodes.c353 int n_bytes = 0; local
380 n_bytes += 1;
389 n_bytes += 4;
399 n_bytes += 4;
408 n_bytes += arg_size; \
413 n_bytes += arg_size; \
437 n_bytes += 1;
441 n_bytes += 4;
465 n_bytes += 4;
478 if (*n_bytes_ptr != n_bytes) {
[all...]
H A Dsession.c2022 int n_bytes; local
2066 n_bytes = packet_remaining();
2067 tty_parse_modes(s->ttyfd, &n_bytes);
/external/valgrind/main/coregrind/
H A Dlauncher-linux.c121 ssize_t n_bytes; local
137 n_bytes = read(fd, header, sizeof(header));
139 if (n_bytes < 2) {
144 (long int)n_bytes, clientname);
152 if (i == n_bytes) return NULL;
160 if (i == n_bytes) break;
164 if (i == n_bytes) return NULL;
169 } else if (n_bytes >= SELFMAG && memcmp(header, ELFMAG, SELFMAG) == 0) {
171 if (n_bytes >= sizeof(Elf32_Ehdr) && header[EI_CLASS] == ELFCLASS32) {
195 } else if (n_bytes >
[all...]
/external/dbus/dbus/
H A Ddbus-internals.c530 * @param n_bytes number of bytes to copy
535 size_t n_bytes)
539 copy = dbus_malloc (n_bytes);
543 memcpy (copy, mem, n_bytes);
534 _dbus_memdup(const void *mem, size_t n_bytes) argument
H A Ddbus-sysdeps.c799 int n_bytes)
806 n_bytes);
812 while (i < n_bytes)
827 * Fills n_bytes of the given buffer with random bytes.
830 * @param n_bytes the number of bytes in buffer to write to
834 int n_bytes)
840 _dbus_generate_pseudorandom_bytes_buffer (buffer, n_bytes);
844 if (!_dbus_generate_random_bytes (&str, n_bytes))
847 _dbus_generate_pseudorandom_bytes_buffer (buffer, n_bytes);
851 _dbus_string_copy_to_buffer (&str, buffer, n_bytes);
798 _dbus_generate_pseudorandom_bytes_buffer(char *buffer, int n_bytes) argument
833 _dbus_generate_random_bytes_buffer(char *buffer, int n_bytes) argument
865 _dbus_generate_random_ascii(DBusString *str, int n_bytes) argument
[all...]
H A Ddbus-string.c578 * @param n_bytes number of bytes
585 int n_bytes,
591 _dbus_assert (n_bytes >= 0);
593 if (n_bytes == 0)
596 if (!open_gap (n_bytes, real, i))
599 memset (real->str + i, byte, n_bytes);
583 _dbus_string_insert_bytes(DBusString *str, int i, int n_bytes, unsigned char byte) argument
H A Ddbus-sysdeps-unix.c2645 int n_bytes)
2652 if (!_dbus_string_lengthen (str, n_bytes))
2655 p = _dbus_string_get_data_len (str, old_len, n_bytes);
2657 _dbus_generate_pseudorandom_bytes_buffer (p, n_bytes);
2667 * @param n_bytes the number of random bytes to append to string
2672 int n_bytes)
2689 return _dbus_generate_pseudorandom_bytes (str, n_bytes);
2693 if (_dbus_read (fd, str, n_bytes) != n_bytes)
2697 return _dbus_generate_pseudorandom_bytes (str, n_bytes);
2644 _dbus_generate_pseudorandom_bytes(DBusString *str, int n_bytes) argument
2671 _dbus_generate_random_bytes(DBusString *str, int n_bytes) argument
[all...]
H A Ddbus-sysdeps-win.c1953 * @param n_bytes the number of random bytes to append to string
1958 int n_bytes)
1966 if (!_dbus_string_lengthen (str, n_bytes))
1969 p = _dbus_string_get_data_len (str, old_len, n_bytes);
1974 if (!CryptGenRandom (hprov, n_bytes, p))
1957 _dbus_generate_random_bytes(DBusString *str, int n_bytes) argument
/external/svox/pico/lib/
H A Dpicosig.c738 picoos_uint32 n_start, n_fram, n_bytes; local
1197 n_bytes = (picoos_uint32) sig_subObj->outBuf[(sig_subObj->outReadPos)
1203 n_bytes / 2,
1205 PICODBG_DEBUG(("Nframe:%d - Nbytes %d\n", n_fram, n_bytes));
1206 numoutb = n_bytes + 4;
/external/valgrind/main/massif/
H A Dms_main.c596 static void* perm_malloc(SizeT n_bytes) argument
603 if (hp + n_bytes > hp_lim) {
611 hp += n_bytes;
613 return (void*)(hp - n_bytes);

Completed in 257 milliseconds