Home
last modified time | relevance | path

Searched refs:new_data (Results 1 – 17 of 17) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-blob.cc310 char *new_data; in _try_writable() local
312 new_data = (char *) malloc (blob->length); in _try_writable()
313 if (unlikely (!new_data)) in _try_writable()
318 memcpy (new_data, blob->data, blob->length); in _try_writable()
321 blob->data = new_data; in _try_writable()
322 blob->user_data = new_data; in _try_writable()
/external/ceres-solver/examples/
Dpgm_image.h83 bool SetData(const std::vector<Real>& new_data);
301 bool PGMImage<Real>::SetData(const std::vector<Real>& new_data) { in SetData() argument
303 if (new_data.size() != data_.size()) { in SetData()
306 std::copy(new_data.begin(), new_data.end(), data_.begin()); in SetData()
/external/chromium/chrome/common/net/gaia/
Dgaia_auth_consumer.cc15 const std::string& new_data) in ClientLoginResult() argument
19 data(new_data), in ClientLoginResult()
Dgaia_auth_consumer.h22 const std::string& new_data);
/external/openssl/crypto/asn1/
Da_enum.c158 unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); in BN_to_ASN1_ENUMERATED() local
159 if (!new_data) in BN_to_ASN1_ENUMERATED()
164 ret->data=new_data; in BN_to_ASN1_ENUMERATED()
Da_int.c425 unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); in BN_to_ASN1_INTEGER() local
426 if (!new_data) in BN_to_ASN1_INTEGER()
431 ret->data=new_data; in BN_to_ASN1_INTEGER()
/external/protobuf/src/google/protobuf/
Drepeated_field_unittest.cc950 Nested* new_data = new Nested; in TEST_F() local
951 new_data->set_bb(i); in TEST_F()
952 data.push_back(new_data); in TEST_F()
954 new_data = goldenproto.add_repeated_nested_message(); in TEST_F()
955 new_data->set_bb(i); in TEST_F()
969 string* new_data = new string; in TEST_F() local
970 *new_data = "name-" + SimpleItoa(i); in TEST_F()
971 data.push_back(new_data); in TEST_F()
973 new_data = goldenproto.add_repeated_string(); in TEST_F()
974 *new_data = "name-" + SimpleItoa(i); in TEST_F()
/external/v8/src/
Dlist-inl.h88 T* new_data = List<T, P>::NewData(new_capacity); in Resize() local
89 memcpy(new_data, data_, capacity_ * sizeof(T)); in Resize()
91 data_ = new_data; in Resize()
/external/opencv/ml/src/
Dml_inner_functions.cpp1746 int** new_data = NULL; in cvCombineResponseMaps() local
1772 CV_CALL (new_data = (int**)cvAlloc (new_n * sizeof (new_data[0]))); in cvCombineResponseMaps()
1774 new_data[i] = first + i; in cvCombineResponseMaps()
1775 qsort (new_data, new_n, sizeof(int*), icvCmpIntegersPtr); in cvCombineResponseMaps()
1787 if (*old_data[i] == *new_data[j]) in cvCombineResponseMaps()
1792 else if (*old_data[i] < *new_data[j]) in cvCombineResponseMaps()
1807 if (*old_data[i] == *new_data[j]) in cvCombineResponseMaps()
1809 *new_data[j] = (int)(old_data[i] - first); in cvCombineResponseMaps()
1813 else if (*old_data[i] < *new_data[j]) in cvCombineResponseMaps()
1817 out_data[free_response] = *new_data[j]; in cvCombineResponseMaps()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h310 T *new_data = (T *)MmapOrDie(new_capacity * sizeof(T), in Resize() local
312 internal_memcpy(new_data, data_, size_ * sizeof(T)); in Resize()
314 data_ = new_data; in Resize()
/external/chromium/third_party/libevent/test/
Dregress.gen.c79 struct run ** new_data = NULL; in msg_run_add() local
81 new_data = (struct run **) realloc(msg->run_data, in msg_run_add()
83 if (new_data == NULL) in msg_run_add()
85 msg->run_data = new_data; in msg_run_add()
/external/qemu/telephony/
Dgsm.c289 bytes_t new_data; in gsm_rope_ensure() local
294 new_data = realloc( old_data, new_max ); in gsm_rope_ensure()
295 if (new_data == NULL) { in gsm_rope_ensure()
299 rope->data = new_data; in gsm_rope_ensure()
/external/chromium/chrome/browser/printing/
Dprint_dialog_cloud.cc191 scoped_ptr<StringValue> new_data(new StringValue(base64_data)); in ReadPrintDataFile() local
192 print_data_.swap(new_data); in ReadPrintDataFile()
/external/webp/src/dec/
Dvp8l.c805 uint8_t* const new_data = (uint8_t*)new_color_map; in ExpandColorMap() local
809 new_data[i] = (data[i] + new_data[i - 4]) & 0xff; in ExpandColorMap()
812 new_data[i] = 0; // black tail. in ExpandColorMap()
/external/chromium/chrome/browser/download/
Dsave_package.cc1041 scoped_refptr<net::IOBuffer> new_data(new net::IOBuffer(data.size())); in OnReceivedSerializedHtmlData() local
1042 memcpy(new_data->data(), data.data(), data.size()); in OnReceivedSerializedHtmlData()
1050 new_data, in OnReceivedSerializedHtmlData()
/external/chromium/chrome/browser/sync/engine/
Dsyncapi.cc603 sync_pb::EntitySpecifics new_data; in ResetFromSpecifics() local
604 new_data.CopyFrom(GetUnencryptedSpecifics(GetEntry())); in ResetFromSpecifics()
605 EncryptIfNecessary(&new_data); in ResetFromSpecifics()
606 PutSpecificsAndMarkForSyncing(new_data); in ResetFromSpecifics()
/external/openssh/
Dchannels.c3569 char *new_data; local
3614 new_data = tohex(x11_fake_data, data_len);
3624 packet_put_cstring(new_data);
3628 xfree(new_data);