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

1 2

  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_persistent_allocator.h 83 BlockInfo *new_block = (BlockInfo *)(mem + allocsz) - 1; local
84 new_block->next = curr;
85 new_block->ptr = mem;
86 new_block->size = allocsz;
87 curr = new_block;
  /src/distrib/utils/more/
ch.c 269 long new_block; local
271 new_block = pos / BUFSIZ;
272 if (!ispipe || pos == last_piped_pos || buffered(new_block)) {
276 ch_block = new_block;
  /src/external/gpl3/gcc.old/dist/gcc/
data-streamer-out.cc 38 struct lto_char_ptr_base *new_block; local
47 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
48 obs->first_block = new_block;
56 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
61 tptr->ptr = (char *) new_block;
67 = ((char *) new_block) + sizeof (struct lto_char_ptr_base);
68 obs->current_block = new_block;
70 new_block->ptr = NULL;
gimple-low.cc 424 tree new_block = gimple_bind_block (stmt); local
426 if (new_block)
428 if (new_block == old_block)
433 gcc_assert (new_block == DECL_INITIAL (current_function_decl));
434 new_block = NULL;
439 gcc_assert (!TREE_ASM_WRITTEN (new_block));
440 TREE_ASM_WRITTEN (new_block) = 1;
445 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (old_block);
446 BLOCK_SUBBLOCKS (old_block) = new_block;
447 BLOCK_SUBBLOCKS (new_block) = NULL_TREE
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
inline-frame.c 285 const struct block *new_block; local
291 new_block = (const struct block *) bv->map ()->find (pc - 1);
292 if (new_block == NULL)
295 if (new_block == block || block->contains (new_block))
jit.c 573 struct block *new_block = new (&objfile->objfile_obstack) block; local
577 new_block->set_multidict
580 new_block->set_start (gdb_block_iter.begin);
581 new_block->set_end (gdb_block_iter.end);
588 block_name->set_value_block (new_block);
593 new_block->set_function (block_name);
595 bv->set_block (block_idx, new_block);
596 if (begin > new_block->start ())
597 begin = new_block->start ();
598 if (end < new_block->end ()
610 struct block *new_block; local
    [all...]
mdebugread.c 241 static struct block *new_block (struct objfile *objfile,
814 b = new_block (objfile, FUNCTION_BLOCK, s->language ());
1144 b = new_block (objfile, NON_FUNCTION_BLOCK, psymtab_language);
2011 b = new_block (2);
4647 bv->set_block (GLOBAL_BLOCK, new_block (objfile, NON_FUNCTION_BLOCK, lang));
4648 bv->set_block (STATIC_BLOCK, new_block (objfile, NON_FUNCTION_BLOCK, lang));
4735 new_block (struct objfile *objfile, enum block_type type,
4724 new_block (struct objfile *objfile, enum block_type type, function
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_filter_lzop.c 400 void *new_block; local
402 new_block = realloc(state->out_block, state->uncompressed_size);
403 if (new_block == NULL) {
408 state->out_block = new_block;
archive_write_disk_posix.c 1509 void *new_block; local
1514 new_block = malloc(MAX_DECMPFS_XATTR_SIZE
1516 if (new_block == NULL) {
1521 a->decmpfs_header_p = new_block;
1545 new_block = realloc(a->resource_fork, new_size);
1546 if (new_block == NULL) {
1552 a->resource_fork = new_block;
1557 new_block = malloc(MAX_DECMPFS_BLOCK_SIZE);
1558 if (new_block == NULL) {
1563 a->uncompressed_buffer = new_block;
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
data-streamer-out.cc 40 struct lto_char_ptr_base *new_block; local
49 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
50 obs->first_block = new_block;
58 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
63 tptr->ptr = (char *) new_block;
69 = ((char *) new_block) + sizeof (struct lto_char_ptr_base);
70 obs->current_block = new_block;
72 new_block->ptr = NULL;
gimple-low.cc 867 tree new_block = gimple_bind_block (stmt); local
869 if (new_block)
871 if (new_block == old_block)
876 gcc_assert (new_block == DECL_INITIAL (current_function_decl));
877 new_block = NULL;
882 gcc_assert (!TREE_ASM_WRITTEN (new_block));
883 TREE_ASM_WRITTEN (new_block) = 1;
888 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (old_block);
889 BLOCK_SUBBLOCKS (old_block) = new_block;
890 BLOCK_SUBBLOCKS (new_block) = NULL_TREE
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
inline-frame.c 291 const struct block *new_block; local
297 new_block = (const struct block *) bv->map ()->find (pc - 1);
298 if (new_block == NULL)
301 if (new_block == block || block->contains (new_block))
jit.c 575 struct block *new_block = new (&objfile->objfile_obstack) block; local
579 new_block->set_multidict
582 new_block->set_start (gdb_block_iter.begin);
583 new_block->set_end (gdb_block_iter.end);
590 block_name->set_value_block (new_block);
595 new_block->set_function (block_name);
597 bv->set_block (block_idx, new_block);
598 if (begin > new_block->start ())
599 begin = new_block->start ();
600 if (end < new_block->end ()
612 struct block *new_block; local
    [all...]
mdebugread.c 241 static struct block *new_block (struct objfile *objfile,
814 b = new_block (objfile, FUNCTION_BLOCK, s->language ());
1144 b = new_block (objfile, NON_FUNCTION_BLOCK, psymtab_language);
2011 b = new_block (2);
4647 bv->set_block (GLOBAL_BLOCK, new_block (objfile, NON_FUNCTION_BLOCK, lang));
4648 bv->set_block (STATIC_BLOCK, new_block (objfile, NON_FUNCTION_BLOCK, lang));
4735 new_block (struct objfile *objfile, enum block_type type,
4724 new_block (struct objfile *objfile, enum block_type type, function
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_libdispatch_mac.cc 493 void (^new_block)(size_t) = ^(size_t iteration) {
502 REAL(dispatch_apply)(iterations, queue, new_block);
511 void (^new_block)(size_t) = ^(size_t iteration) {
514 WRAP(dispatch_apply)(iterations, queue, new_block);
624 dispatch_block_t new_block = Block_copy(^(void) { local
632 REAL(dispatch_io_barrier)(channel, new_block);
633 Block_release(new_block);
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_interceptors_libdispatch.cpp 515 void (^new_block)(size_t) = ^(size_t iteration) {
524 REAL(dispatch_apply)(iterations, queue, new_block);
546 void (^new_block)(size_t) = ^(size_t iteration) {
555 REAL(dispatch_apply_f)(iterations, queue, new_block, invoke_block_iteration);
667 dispatch_block_t new_block = Block_copy(^(void) { local
675 REAL(dispatch_io_barrier)(channel, new_block);
676 Block_release(new_block);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_interceptors_libdispatch.cpp 515 void (^new_block)(size_t) = ^(size_t iteration) {
524 REAL(dispatch_apply)(iterations, queue, new_block);
546 void (^new_block)(size_t) = ^(size_t iteration) {
555 REAL(dispatch_apply_f)(iterations, queue, new_block, invoke_block_iteration);
667 dispatch_block_t new_block = Block_copy(^(void) { local
675 REAL(dispatch_io_barrier)(channel, new_block);
676 Block_release(new_block);
  /src/external/bsd/dhcpcd/dist/src/
if-options.c 2676 int skip, have_profile, new_block, had_block; local
2847 skip = have_profile = new_block = 0;
2862 if (skip == 0 && new_block) {
2864 new_block = 0;
2873 new_block = 1;
2903 new_block = 1;
2912 new_block = 1;
  /src/external/bsd/less/dist/
ch.c 463 BLOCKNUM new_block; local
473 new_block = pos / LBUFSIZE;
474 if (!(ch_flags & CH_CANSEEK) && pos != ch_fpos && !buffered(new_block))
490 ch_block = new_block;
  /src/external/gpl3/gcc/dist/gcc/jit/
libgccjit++.h 391 block new_block ();
392 block new_block (const std::string &name);
1494 function::new_block () function in class:gccjit::function
1501 function::new_block (const std::string &name) function in class:gccjit::function
jit-playback.cc 1988 new_block (const char *name) function in class:gcc::jit::playback::function
jit-recording.cc 4222 recording::function::new_block (const char *name) function in class:gcc::jit::recording::function
4905 ->new_block (playback_string (m_name)));
  /src/external/gpl3/gcc.old/dist/gcc/jit/
libgccjit++.h 390 block new_block ();
391 block new_block (const std::string &name);
1487 function::new_block () function in class:gccjit::function
1494 function::new_block (const std::string &name) function in class:gccjit::function
jit-playback.cc 1819 new_block (const char *name) function in class:gcc::jit::playback::function
jit-recording.cc 4149 recording::function::new_block (const char *name) function in class:gcc::jit::recording::function
4721 ->new_block (playback_string (m_name)));

Completed in 85 milliseconds

1 2