Home
last modified time | relevance | path

Searched refs:from_ptr (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_java.cc153 jptr __tsan_java_find(jptr *from_ptr, jptr to) { in __tsan_java_find() argument
155 DPrintf("#%d: java_find(&%p, %p)\n", *from_ptr, to); in __tsan_java_find()
156 CHECK_EQ((*from_ptr) % kHeapAlignment, 0); in __tsan_java_find()
158 CHECK_GE(*from_ptr, jctx->heap_begin); in __tsan_java_find()
160 for (uptr from = *from_ptr; from < to; from += kHeapAlignment) { in __tsan_java_find()
163 *from_ptr = from; in __tsan_java_find()
H A Dtsan_interface_java.h63 jptr __tsan_java_find(jptr *from_ptr, jptr to) INTERFACE_ATTRIBUTE;
/freebsd-12.1/contrib/ncurses/ncurses/tinfo/
H A Dparse_entry.c790 struct name_table_entry const *from_ptr; in postprocess_termcap() local
820 from_ptr = _nc_find_entry(ap->from, _nc_get_hash_table(TRUE)); in postprocess_termcap()
823 if (!from_ptr || !to_ptr) /* should never happen! */ in postprocess_termcap()
826 if (WANTED(tp->Strings[from_ptr->nte_index])) { in postprocess_termcap()
836 tp->Strings[from_ptr->nte_index], in postprocess_termcap()
848 for (dp = buf2, bp = tp->Strings[from_ptr->nte_index]; *bp; bp++) { in postprocess_termcap()
/freebsd-12.1/contrib/gcc/
H A Dbitmap.c391 bitmap_element *from_ptr, *to_ptr = 0; in bitmap_copy() local
396 for (from_ptr = from->first; from_ptr; from_ptr = from_ptr->next) in bitmap_copy()
400 to_elt->indx = from_ptr->indx; in bitmap_copy()
401 memcpy (to_elt->bits, from_ptr->bits, sizeof (to_elt->bits)); in bitmap_copy()
408 to->indx = from_ptr->indx; in bitmap_copy()
/freebsd-12.1/contrib/gdb/gdb/
H A Dcharset.c421 ICONV_CONST char *from_ptr = &from; in cached_iconv_convert() local
428 if (iconv (ci->i, &from_ptr, &from_left, &to_ptr, &to_left) in cached_iconv_convert()