Searched refs:new_data (Results 1 - 23 of 23) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/asn1/
H A Da_enum.c156 unsigned char *new_data = OPENSSL_realloc(ret->data, len + 4); local
157 if (!new_data) {
161 ret->data = new_data;
H A Da_int.c431 unsigned char *new_data = OPENSSL_realloc(ret->data, len + 4); local
432 if (!new_data) {
436 ret->data = new_data;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/asn1/
H A Da_enum.c156 unsigned char *new_data = OPENSSL_realloc(ret->data, len + 4); local
157 if (!new_data) {
161 ret->data = new_data;
H A Da_int.c431 unsigned char *new_data = OPENSSL_realloc(ret->data, len + 4); local
432 if (!new_data) {
436 ret->data = new_data;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Da_enum.c158 unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); local
159 if (!new_data)
164 ret->data=new_data;
H A Da_int.c426 unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); local
427 if (!new_data)
432 ret->data=new_data;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/libevent-2.0.20-stable/test/
H A Dregress.gen.c81 struct run** new_data = NULL; local
83 new_data = (struct run**) realloc(msg->run_data,
85 if (new_data == NULL)
87 msg->run_data = new_data;
487 ev_uint32_t* new_data = NULL; local
489 new_data = (ev_uint32_t*) realloc(msg->how_often_data,
491 if (new_data == NULL)
493 msg->how_often_data = new_data;
798 char ** new_data = NULL; local
800 new_data
835 ev_uint32_t* new_data = NULL; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/
H A Dnewport_con.c508 unsigned char *new_data, *data = op->data, *p; local
516 if (!(new_data = kmalloc(FONT_EXTRA_WORDS * sizeof(int) + size,
519 new_data += FONT_EXTRA_WORDS * sizeof(int);
520 FNTSIZE(new_data) = size;
521 FNTCHARCNT(new_data) = op->charcount;
522 REFCOUNT(new_data) = 0; /* usage counter */
524 p = new_data;
535 && !memcmp(font_data[i], new_data, size)) {
536 kfree(new_data - FONT_EXTRA_WORDS * sizeof(int));
540 new_data
[all...]
H A Dfbcon.c2547 u8 *new_data, *data = font->data; local
2566 new_data = kmalloc(FONT_EXTRA_WORDS * sizeof(int) + size, GFP_USER);
2568 if (!new_data)
2571 new_data += FONT_EXTRA_WORDS * sizeof(int);
2572 FNTSIZE(new_data) = size;
2573 FNTCHARCNT(new_data) = charcount;
2574 REFCOUNT(new_data) = 0; /* usage counter */
2576 memcpy(new_data + i*h*pitch, data + i*32*pitch, h*pitch);
2581 csum = crc32(0, new_data, size);
2583 FNTSUM(new_data)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavresample/
H A Daudio_data.c175 uint8_t *new_data[AVRESAMPLE_MAX_CHANNELS] = { NULL }; local
177 ret = av_samples_alloc(new_data, &plane_size, a->allocated_channels,
183 memcpy(new_data[p], a->data[p], a->nb_samples * a->stride);
186 memcpy(a->data, new_data, sizeof(new_data));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/
H A Dhttp_pipe.py384 new_data = self.request.recv(MAX_REQUEST_SIZE)
386 if not new_data:
388 new_requests = self._request_parser.ParseAdditionalData(new_data)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/comedi/
H A Ddrivers.c363 unsigned int new_data[2]; local
364 memset(new_data, 0, sizeof(new_data));
369 new_insn.data = new_data;
375 new_data[0] = 1 << (chan - base_bitfield_channel); /* mask */
376 new_data[1] = data[0] ? (1 << (chan - base_bitfield_channel))
380 ret = s->insn_bits(dev, s, &new_insn, new_data);
385 data[0] = (new_data[1] >> (chan - base_bitfield_channel)) & 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/libaddns/
H A Ddnsmarshall.c75 uint8 *new_data; local
83 if (!(new_data = TALLOC_REALLOC_ARRAY(buf, buf->data, uint8,
90 buf->data = new_data;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/printing/
H A Dprinting.c471 struct printjob *new_data)
489 notify_job_submitted(sharename, jobid, new_data->starttime);
490 notify_job_username(sharename, jobid, new_data->user);
493 if (new_job || !strequal(old_data->jobname, new_data->jobname))
494 notify_job_name(sharename, jobid, new_data->jobname);
499 if (new_job || !strequal(old_data->jobname, new_data->jobname))
500 notify_job_name(sharename, jobid, new_data->jobname);
502 if (new_job || old_data->status != new_data->status)
503 notify_job_status(sharename, jobid, map_to_spoolss_status(new_data->status));
505 if (new_job || old_data->size != new_data
470 pjob_store_notify(const char* sharename, uint32 jobid, struct printjob *old_data, struct printjob *new_data) argument
518 TDB_DATA old_data, new_data; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libevent-1.4.14b-stable/test/
H A Dregress.gen.c79 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;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Ddirdlgg.cpp355 wxDirItemData *new_data = new wxDirItemData( path, new_name, true ); local
359 wxTreeItemId new_id = m_dirCtrl->GetTreeCtrl()->AppendItem( parent, new_name, 0, 0, new_data );
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dn_r3964.c1121 unsigned char *new_data; local
1144 new_data = kmalloc(count + sizeof(struct r3964_block_header),
1146 TRACE_M("r3964_write - kmalloc %p", new_data);
1147 if (new_data == NULL) {
1154 pHeader = (struct r3964_block_header *)new_data;
1155 pHeader->data = new_data + sizeof(struct r3964_block_header);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Davpacket.c437 uint8_t *const new_data = av_realloc(data, new_size); local
439 if (!new_data)
441 data = new_data;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/
H A Dcontrol.c925 void *new_data; local
931 new_data = memdup_user(tlv, size);
932 if (IS_ERR(new_data))
933 return PTR_ERR(new_data);
936 change = memcmp(ue->tlv_data, new_data, size);
938 ue->tlv_data = new_data;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/serial/
H A Dioc3_serial.c954 int new_parity = 0, new_parity_enable = 0, new_stop = 0, new_data = 8; local
962 new_data = 5;
965 new_data = 6;
968 new_data = 7;
971 new_data = 8;
975 new_data = 5;
1027 new_data, new_stop, new_parity_enable, new_parity,
1031 new_data, /* byte size */
H A Dioc4_serial.c1689 int new_parity = 0, new_parity_enable = 0, new_stop = 0, new_data = 8; local
1697 new_data = 5;
1701 new_data = 6;
1705 new_data = 7;
1709 new_data = 8;
1714 new_data = 5;
1770 __func__, (void *)port, cflag, baud, new_data, new_stop,
1774 new_data, /* byte size */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/DB_File/t/
H A Ddb-recno.t263 my @new_data = qw(add this to the start of the array) ;
264 $FA ? unshift (@h, @new_data) : $X->unshift (@new_data) ;
265 unshift (@data, @new_data) ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dvp9lpf.asm77 %macro MASK_APPLY 4 ; %1=new_data/dst %2=old_data %3=mask %4=tmp

Completed in 247 milliseconds