HomeSort by: relevance | last modified time | path
    Searched defs:new_data (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/sys/arch/evbppc/mpc85xx/
ds1553rtc.c 71 uint8_t saved_data, new_data; local
89 new_data = bus_space_read_1(ga->ga_bst, bsh, target);
90 rv = (new_data == (uint8_t) ~saved_data);
  /src/external/mit/libcbor/dist/src/cbor/
arrays.c 71 unsigned char *new_data = _cbor_realloc_multiple( local
73 if (new_data == NULL) {
77 array->data = new_data;
maps.c 78 unsigned char *new_data = _cbor_realloc_multiple( local
81 if (new_data == NULL) {
85 item->data = new_data;
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_map.c 75 void **new_data = dt_zalloc(dtp, nsize); local
77 if (new_data == NULL) {
82 bcopy(*data, new_data, osize);
85 *data = new_data;
  /src/crypto/external/bsd/openssl/dist/crypto/encode_decode/
encoder_lib.c 421 struct encoder_process_data_st new_data; local
437 memset(&new_data, 0, sizeof(new_data));
438 new_data.ctx = data->ctx;
439 new_data.current_encoder_inst_index = i;
440 new_data.next_encoder_inst = current_encoder_inst;
441 new_data.count_output_structure = data->count_output_structure;
442 new_data.level = data->level + 1;
508 ok = encoder_process(&new_data);
510 data->prev_encoder_inst = new_data.prev_encoder_inst
    [all...]
decoder_lib.c 687 struct decoder_process_data_st new_data; local
697 memset(&new_data, 0, sizeof(new_data));
698 new_data.ctx = data->ctx;
699 new_data.recursion = data->recursion + 1;
702 #define LEVEL (new_data.recursion < sizeof(LEVEL_STR) \
703 ? &LEVEL_STR[sizeof(LEVEL_STR) - new_data.recursion - 1] \
712 (void *)new_data.ctx);
735 (void *)new_data.ctx, LEVEL);
743 (void *)new_data.ctx, LEVEL, rv)
    [all...]
  /src/external/bsd/kyua-testers/dist/
error.c 80 void* new_data = malloc(data_size); local
81 if (new_data == NULL) {
84 memcpy(new_data, data, data_size);
85 error->data = new_data;
  /src/crypto/external/apache2/openssl/dist/crypto/encode_decode/
encoder_lib.c 441 struct encoder_process_data_st new_data; local
451 memset(&new_data, 0, sizeof(new_data));
452 new_data.ctx = data->ctx;
453 new_data.current_encoder_inst_index = i;
454 new_data.next_encoder_inst = current_encoder_inst;
455 new_data.count_output_structure = data->count_output_structure;
456 new_data.level = data->level + 1;
532 ok = encoder_process(&new_data);
534 data->prev_encoder_inst = new_data.prev_encoder_inst
    [all...]
decoder_lib.c 810 struct decoder_process_data_st new_data; local
822 memset(&new_data, 0, sizeof(new_data));
823 new_data.ctx = data->ctx;
824 new_data.recursion = data->recursion + 1;
827 #define LEVEL (new_data.recursion < sizeof(LEVEL_STR) \
828 ? &LEVEL_STR[sizeof(LEVEL_STR) - new_data.recursion - 1] \
838 (void *)new_data.ctx);
861 (void *)new_data.ctx, LEVEL);
871 (void *)new_data.ctx, LEVEL, rv)
    [all...]
  /src/external/bsd/libevent/dist/test/
regress.gen.c 88 struct run** new_data = NULL; local
90 new_data = (struct run**) realloc(msg->run_data,
92 if (new_data == NULL)
94 msg->run_data = new_data;
492 ev_uint32_t* new_data = NULL; local
494 new_data = (ev_uint32_t*) realloc(msg->how_often_data,
496 if (new_data == NULL)
498 msg->how_often_data = new_data;
800 char ** new_data = NULL; local
802 new_data = (char **) realloc(msg->notes_data
838 ev_uint32_t* new_data = NULL; local
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/test/
regress.gen.c 89 struct run** new_data = NULL; local
91 new_data = (struct run**) realloc(msg->run_data,
93 if (new_data == NULL)
95 msg->run_data = new_data;
493 ev_uint32_t* new_data = NULL; local
495 new_data = (ev_uint32_t*) realloc(msg->how_often_data,
497 if (new_data == NULL)
499 msg->how_often_data = new_data;
801 char ** new_data = NULL; local
803 new_data = (char **) realloc(msg->notes_data
839 ev_uint32_t* new_data = NULL; local
    [all...]
  /src/external/gpl2/libmalloc/dist/
ralloc.c 182 POINTER new_data; /* tmporarily used for relocation */
408 new_bloc->new_data = 0;
442 Store the new location of each bloc in its new_data field.
489 b->new_data = address;
641 safe_bcopy (b->data, b->new_data, b->size);
642 *b->variable = b->data = b->new_data;
644 safe_bcopy (bloc->data, bloc->new_data, old_size);
645 bzero (bloc->new_data + old_size, size - old_size);
646 *bloc->variable = bloc->data = bloc->new_data;
652 safe_bcopy (b->data, b->new_data, b->size)
180 POINTER new_data; \/* tmporarily used for relocation *\/ member in struct:bp
    [all...]
  /src/external/bsd/tmux/dist/
control.c 612 u_char *new_data; local
628 new_data = window_pane_get_new_data(wp, &cp->offset, &new_size);
632 if (new_data[i] < ' ' || new_data[i] == '\\')
633 evbuffer_add_printf(message, "\\%03o", new_data[i]);
635 evbuffer_add_printf(message, "%c", new_data[i]);
window.c 1026 char *new_data; local
1031 new_data = window_pane_get_new_data(wp, wpo, &new_size);
1033 bufferevent_write(wp->pipe_event, new_data, new_size);
  /src/crypto/external/bsd/openssl.old/dist/crypto/store/
loader_file.c 338 unsigned char *new_data = NULL; local
367 &new_data, &new_data_len, 0))
370 mem->data = (char *)new_data;
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
macos-ioloop.c 400 dispatch_data_t data = NULL, new_data, combined; local
433 new_data = dispatch_data_create(iov[i].iov_base, iov[i].iov_len,
437 if (new_data != NULL) {
439 combined = dispatch_data_create_concat(data, new_data);
441 dispatch_release(new_data);
450 data = new_data;
469 new_data = dispatch_data_create(&len, sizeof (len), ioloop_main_queue, DISPATCH_DATA_DESTRUCTOR_DEFAULT);
470 if (new_data == NULL) {
474 ERROR("no memory for new_data");
478 combined = dispatch_data_create_concat(new_data, data)
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
CallStack.cc 92 CallStackNode **new_data = (CallStackNode **) xmalloc (new_limit * sizeof (CallStackNode *)); local
94 new_data[i] = old_data[i];
95 new_data[ind] = item;
97 new_data[i + 1] = old_data[i];
99 data = new_data;
  /src/external/gpl3/binutils.old/dist/gprofng/src/
CallStack.cc 92 CallStackNode **new_data = (CallStackNode **) xmalloc (new_limit * sizeof (CallStackNode *)); local
94 new_data[i] = old_data[i];
95 new_data[ind] = item;
97 new_data[i + 1] = old_data[i];
99 data = new_data;
  /src/external/gpl3/gdb/dist/sim/igen/
ld-insn.c 578 model_data *new_data; local
588 new_data = ZALLOC (model_data);
589 new_data->line = model_record->line;
590 filter_parse (&new_data->flags,
592 new_data->entry = model_record;
593 new_data->code = code_record;
602 *list = new_data;
  /src/external/gpl3/gdb.old/dist/sim/igen/
ld-insn.c 578 model_data *new_data; local
588 new_data = ZALLOC (model_data);
589 new_data->line = model_record->line;
590 filter_parse (&new_data->flags,
592 new_data->entry = model_record;
593 new_data->code = code_record;
602 *list = new_data;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common.h 516 T *new_data = (T *)MmapOrDie(new_capacity_bytes, "InternalMmapVector"); local
517 internal_memcpy(new_data, data_, size_ * sizeof(T));
519 data_ = new_data;
  /src/crypto/external/apache2/openssl/dist/engines/
e_loader_attic.c 449 unsigned char *new_data = NULL; local
478 &new_data, &new_data_len, 0))
481 mem->data = (char *)new_data;
  /src/crypto/external/bsd/openssl/dist/engines/
e_loader_attic.c 449 unsigned char *new_data = NULL; local
477 &new_data, &new_data_len, 0))
480 mem->data = (char *)new_data;
  /src/external/bsd/dhcpcd/dist/src/
ipv6nd.c 783 !(options & DHCPCD_DAEMONISED) && new_data)
968 bool new_rap, new_data, has_address; local
1057 new_data = true;
1059 new_data = false;
1087 /* We could change the debug level based on new_data, but some
1092 new_data = true;
1178 loglevel = new_data ? LOG_ERR : LOG_DEBUG;
1439 if (new_data && !has_address && rap->lifetime &&
1446 if (new_data)
1480 if (new_data && dhcp6_start(ifp, DH6S_REQUEST) == -1
    [all...]
  /src/external/gpl3/gcc/dist/libbacktrace/
dwarf.c 3650 int new_data; local
3734 new_data = 0;
3762 new_data = 1;
3796 if (new_data)

Completed in 59 milliseconds

1 2