HomeSort by relevance Sort by last modified time
    Searched refs:new_data (Results 1 - 12 of 12) sorted by null

  /bootable/recovery/applypatch/
bspatch.c 104 unsigned char* new_data; local
107 &new_data, &new_size) != 0) {
111 if (sink(new_data, new_size, token) < new_size) {
116 SHA_update(ctx, new_data, new_size);
118 free(new_data);
125 unsigned char** new_data, ssize_t* new_size) {
186 *new_data = malloc(*new_size);
187 if (*new_data == NULL) {
215 if (FillBuffer(*new_data + newpos, ctrl[0], &dstream) != 0) {
223 (*new_data)[newpos+i] += old_data[oldpos+i]
    [all...]
applypatch.h 74 unsigned char** new_data, ssize_t* new_size);
  /external/openssl/crypto/asn1/
a_enum.c 158 unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); local
159 if (!new_data)
164 ret->data=new_data;
a_int.c 426 unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); local
427 if (!new_data)
432 ret->data=new_data;
  /external/v8/src/
list-inl.h 82 T* new_data = List<T, P>::NewData(new_capacity); local
83 memcpy(new_data, data_, capacity_ * sizeof(T));
85 data_ = new_data;
scanner.cc 67 char* new_data = NewArray<char>(new_capacity); local
68 memcpy(new_data, data_, old_position);
70 data_ = new_data;
71 cursor_ = new_data + old_position;
72 limit_ = ComputeLimit(new_data, new_capacity);
    [all...]
  /external/protobuf/src/google/protobuf/
repeated_field_unittest.cc 950 Nested* new_data = new Nested; local
951 new_data->set_bb(i);
952 data.push_back(new_data);
954 new_data = goldenproto.add_repeated_nested_message();
955 new_data->set_bb(i);
969 string* new_data = new string; local
970 *new_data = "name-" + SimpleItoa(i);
971 data.push_back(new_data);
973 new_data = goldenproto.add_repeated_string();
974 *new_data = "name-" + SimpleItoa(i)
    [all...]
  /system/extras/tests/sdcard/
plot_sdcard.py 72 new_data = []
79 new_data.append(accum / factor)
83 self.data = new_data
  /bionic/libc/kernel/tools/
utils.py 298 self.new_data = {}
328 self.new_data[dst] = data
354 data = self.new_data[dst]
356 f.write(self.new_data[dst])
  /external/qemu/telephony/
gsm.c 289 bytes_t new_data; local
294 new_data = realloc( old_data, new_max );
295 if (new_data == NULL) {
299 rope->data = new_data;
  /external/chromium/third_party/libevent/test/
regress.gen.c 79 struct run ** new_data = NULL; local
81 new_data = (struct run **) realloc(msg->run_data,
83 if (new_data == NULL)
85 msg->run_data = new_data;
  /build/tools/releasetools/
sign_target_files_apks 156 new_data = RewriteProps(data)
157 output_tf_zip.writestr(out_info, new_data)

Completed in 899 milliseconds