HomeSort by relevance Sort by last modified time
    Searched refs:old_data (Results 1 - 25 of 26) sorted by null

1 2

  /bootable/recovery/applypatch/include/applypatch/
imgpatch.h 22 int ApplyImagePatch(const unsigned char* old_data, ssize_t old_size,
  /bootable/recovery/applypatch/
applypatch.h 70 int ApplyBSDiffPatch(const unsigned char* old_data, ssize_t old_size,
73 int ApplyBSDiffPatchMem(const unsigned char* old_data, ssize_t old_size,
78 int ApplyImagePatch(const unsigned char* old_data, ssize_t old_size,
imgpatch.cpp 35 int ApplyImagePatch(const unsigned char* old_data, ssize_t old_size,
41 old_data, old_size, &patch, sink, token, nullptr, nullptr);
46 * by (old_data, old_size). Write the patched output to the 'output'
50 int ApplyImagePatch(const unsigned char* old_data, ssize_t old_size,
97 ApplyBSDiffPatch(old_data + src_start, src_len,
163 strm.next_in = (unsigned char*)(old_data + src_start);
bspatch.cpp 101 int ApplyBSDiffPatch(const unsigned char* old_data, ssize_t old_size,
106 if (ApplyBSDiffPatchMem(old_data, old_size, patch, patch_offset, &new_data) != 0) {
118 int ApplyBSDiffPatchMem(const unsigned char* old_data, ssize_t old_size,
218 (*new_data)[newpos+i] += old_data[oldpos+i];
  /external/boringssl/src/include/openssl/
lhash_macros.h 38 #define lh_ASN1_OBJECT_insert(lh, old_data, data) \
40 CHECKED_CAST(void **, ASN1_OBJECT **, old_data), \
76 #define lh_CONF_VALUE_insert(lh, old_data, data) \
78 CHECKED_CAST(void **, CONF_VALUE **, old_data), \
114 #define lh_SSL_SESSION_insert(lh, old_data, data) \
116 CHECKED_CAST(void **, SSL_SESSION **, old_data), \
lhash.h 163 * equal to |data| (with respect to the comparison function) then |*old_data|
165 * event of an error, |*old_data| will be set to NULL. It returns one on
167 OPENSSL_EXPORT int lh_insert(_LHASH *lh, void **old_data, void *data);
  /external/dbus/dbus/
dbus-dataslot.h 86 void **old_data);
dbus-dataslot.c 233 * @param old_data previously-existing data, should be freed with old_free_func
243 void **old_data)
279 *old_data = list->slots[slot].data;
386 void *old_data; local
424 &old_free_func, &old_data))
428 _dbus_assert (old_data == NULL);
444 &old_free_func, &old_data))
448 _dbus_assert (_DBUS_POINTER_TO_INT (old_data) == i);
450 (* old_free_func) (old_data);
dbus-transport.h 85 void **old_data,
93 void **old_data,
dbus-server.c 910 void *old_data; local
916 old_data = server->new_connection_data;
924 (* old_free_function) (old_data);
1139 void *old_data; local
    [all...]
dbus-pending-call.c 515 void *old_data; local
521 &old_free_func, &old_data);
529 (* old_free_func) (old_data);
dbus-transport.c     [all...]
dbus-connection.c 4992 void *old_data; local
5038 void *old_data; local
5269 void *old_data = NULL; local
5368 void *old_data = NULL; local
5934 void *old_data; local
    [all...]
  /external/boringssl/src/crypto/lhash/
lhash_test.c 68 static int dummy_lh_insert(struct dummy_lhash *lh, char **old_data, char *s) {
73 *old_data = cur->s;
80 *old_data = NULL;
lhash.c 225 int lh_insert(_LHASH *lh, void **old_data, void *data) {
229 *old_data = NULL;
236 *old_data = (*next_ptr)->data;
make_macros.sh 44 #define lh_${type}_insert(lh, old_data, data)\\
45 lh_insert(CHECKED_CAST(_LHASH*, LHASH_OF(${type})*, lh), CHECKED_CAST(void**, ${type}**, old_data), CHECKED_CAST(void*, ${type}*, data))
  /external/v8/src/
bit-vector.h 124 uintptr_t old_data = data_[i]; local
126 if (data_[i] != old_data) changed = true;
142 uintptr_t old_data = data_[i]; local
144 if (data_[i] != old_data) changed = true;
assembler.h 1081 void* old_data = jit_handler_data_; local
    [all...]
  /system/update_engine/payload_generator/
delta_diff_utils.cc 592 // old_data.
598 brillo::Blob old_data; local
602 utils::ReadExtents(old_part, src_extents, &old_data,
604 if (old_data == new_data) {
617 old_chunk.value().c_str(), old_data.data(), old_data.size()));
637 if (imgdiff_allowed && ContainsGZip(old_data) && ContainsGZip(new_data)) {
667 operation.set_src_length(old_data.size() - removed_bytes);
  /external/opencv/ml/src/
ml_inner_functions.cpp 1745 int** old_data = NULL; local
    [all...]
  /external/opencv3/apps/traincascade/
old_ml_inner_functions.cpp 1671 int** old_data = NULL; local
    [all...]
  /art/runtime/base/
hash_set.h 613 T* const old_data = data_; local
619 T& element = old_data[i];
628 allocfn_.deallocate(old_data, old_num_buckets);
  /external/drm_hwcomposer/
hwcomposer.cpp 211 const int *old_data = handle->data; local
214 *new_data = dup(*old_data);
215 old_data++;
218 memcpy(new_data, old_data, sizeof(int) * handle->numInts);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 532 T *old_data = data_;
534 UnmapOrDie(old_data, capacity_ * sizeof(T));
  /system/tpm/trunks/
trunks_client_test.cc 373 std::string old_data; local
374 TPM_RC result = utility->ReadPCR(pcr_index, &old_data);
392 crypto::SHA256HashString(old_data + hashed_extend_data);
    [all...]

Completed in 657 milliseconds

1 2