/external/harfbuzz_ng/src/ |
D | hb-blob.cc | 310 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/ |
D | pgm_image.h | 83 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/ |
D | gaia_auth_consumer.cc | 15 const std::string& new_data) in ClientLoginResult() argument 19 data(new_data), in ClientLoginResult()
|
D | gaia_auth_consumer.h | 22 const std::string& new_data);
|
/external/openssl/crypto/asn1/ |
D | a_enum.c | 158 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()
|
D | a_int.c | 425 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/ |
D | repeated_field_unittest.cc | 950 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/ |
D | list-inl.h | 88 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/ |
D | ml_inner_functions.cpp | 1746 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/ |
D | sanitizer_common.h | 310 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/ |
D | regress.gen.c | 79 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/ |
D | gsm.c | 289 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/ |
D | print_dialog_cloud.cc | 191 scoped_ptr<StringValue> new_data(new StringValue(base64_data)); in ReadPrintDataFile() local 192 print_data_.swap(new_data); in ReadPrintDataFile()
|
/external/webp/src/dec/ |
D | vp8l.c | 805 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/ |
D | save_package.cc | 1041 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/ |
D | syncapi.cc | 603 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/ |
D | channels.c | 3569 char *new_data; local 3614 new_data = tohex(x11_fake_data, data_len); 3624 packet_put_cstring(new_data); 3628 xfree(new_data);
|