| /netbsd-src/games/hunt/hunt/ |
| H A D | otto.c | 126 int distance; member 245 if (itemp->distance == -1) { in stop_look() 246 itemp->distance = dist; in stop_look() 262 if (itemp->distance == -1 || (!side in stop_look() 265 itemp->distance = dist; in stop_look() 279 itemp->distance = dist; in stop_look() 292 if (itemp->distance == -1) { in stop_look() 293 itemp->distance = dist; in stop_look() 308 itemp->distance = -1; in ottolook() 329 for (r = row - 1; r > row - itemp->distance; r--) in ottolook() [all …]
|
| /netbsd-src/external/gpl2/groff/dist/src/preproc/pic/ |
| H A D | common.h | 40 const position &, const distance &, 44 void dashed_ellipse(const position &, const distance &, const line_type &); 45 void dotted_ellipse(const position &, const distance &, const line_type &); 52 void dashed_rounded_box(const position &, const distance &, double, 54 void dotted_rounded_box(const position &, const distance &, double, 56 void solid_rounded_box(const position &, const distance &, double, 58 void filled_rounded_box(const position &, const distance &, double, double); 70 void ellipse(const position &, const distance &, 72 void rounded_box(const position &, const distance &, double,
|
| H A D | troff.cpp | 37 virtual void simple_ellipse(int, const position &, const distance &) = 0; 58 void ellipse(const position &, const distance &, const line_type &, double); 98 distance vec(v[i] - pos); in line() 112 distance vec(v[i] - pos); in line() 118 distance dash_vec = vec*(lt.dash_width/dist); in line() 120 distance dash_gap_vec = vec*(dash_gap/dist); in line() 188 void simple_output::ellipse(const position ¢, const distance &dim, in ellipse() 237 void simple_ellipse(int, const position &, const distance &); 338 const distance &dim) in simple_ellipse() 351 void troff_output::simple_arc(const position &start, const distance ¢, in simple_arc() [all …]
|
| H A D | common.cpp | 87 const distance &dim, const line_type <) in ellipse_arc() 126 void common_output::dashed_ellipse(const position ¢, const distance &dim, in dashed_ellipse() 185 void common_output::dotted_ellipse(const position ¢, const distance &dim, in dotted_ellipse() 241 distance c = cent - start; in compute_arc_center() 242 distance e = end - start; in compute_arc_center() 261 distance start_offset = start - c; in dashed_arc() 262 distance end_offset = end - c; in dashed_arc() 292 distance start_offset = start - c; in dotted_arc() 293 distance end_offset = end - c; in dotted_arc() 323 void common_output::rounded_box(const position ¢, const distance &dim, in rounded_box() [all …]
|
| /netbsd-src/external/public-domain/xz/dist/src/liblzma/lz/ |
| H A D | lz_decoder.h | 103 dict_get(const lzma_dict *const dict, const uint32_t distance) in dict_get() argument 105 return dict->buf[dict->pos - distance - 1 in dict_get() 106 + (distance < dict->pos ? 0 : dict->size)]; in dict_get() 120 dict_is_distance_valid(const lzma_dict *const dict, const size_t distance) in dict_is_distance_valid() argument 122 return dict->full > distance; in dict_is_distance_valid() 128 dict_repeat(lzma_dict *dict, uint32_t distance, uint32_t *len) in dict_repeat() argument 138 if (distance < left) { in dict_repeat() 142 dict->buf[dict->pos] = dict_get(dict, distance); in dict_repeat() 146 } else if (distance < dict->pos) { in dict_repeat() 149 dict->buf + dict->pos - distance - 1, in dict_repeat() [all …]
|
| /netbsd-src/external/bsd/ntp/dist/ |
| H A D | results.y2kfixes | 10 timelord.att.com: stratum 2, offset -0.000879, synch distance 0.07207 11 timemaster.att.com: stratum 1, offset -0.004876, synch distance 0.03485, refid 'GPS' 21 timelord.att.com: stratum 2, offset 0.001383, synch distance 0.05644 22 timemaster.att.com: stratum 1, offset -0.006355, synch distance 0.04178, refid 'GPS' 32 timelord.att.com: stratum 2, offset -0.000094, synch distance 0.06522 33 timemaster.att.com: stratum 1, offset -0.010803, synch distance 0.03078, refid 'GPS' 43 timelord.att.com: stratum 2, offset -0.000719, synch distance 0.06561 44 timemaster.att.com: stratum 1, offset -0.013598, synch distance 0.03116, refid 'GPS'
|
| /netbsd-src/external/public-domain/xz/dist/src/liblzma/delta/ |
| H A D | delta_encoder.c | 24 const size_t distance = coder->distance; in copy_and_encode() local 28 (distance + coder->pos) & 0xFF]; in copy_and_encode() 40 const size_t distance = coder->distance; in encode_in_place() local 44 (distance + coder->pos) & 0xFF]; in encode_in_place()
|
| H A D | delta_decoder.c | 20 const size_t distance = coder->distance; in decode_buffer() local 23 buffer[i] += coder->history[(distance + coder->pos) & 0xFF]; in decode_buffer()
|
| /netbsd-src/external/zlib/pigz/dist/zopfli/ |
| H A D | lz77.c | 72 static int GetLengthValue(int length, int distance) { in GetLengthValue() argument 78 return distance > 1024 ? length - 1 : length; in GetLengthValue() 150 unsigned short* sublen, unsigned short* distance, unsigned short* length) { in TryGetFromLongestMatchCache() argument 171 *distance = sublen[*length]; in TryGetFromLongestMatchCache() 176 *distance = s->lmc->dist[lmcpos]; in TryGetFromLongestMatchCache() 195 unsigned short distance, unsigned short length) { in StoreInLongestMatchCache() argument 207 s->lmc->dist[lmcpos] = length < ZOPFLI_MIN_MATCH ? 0 : distance; in StoreInLongestMatchCache() 218 unsigned short* sublen, unsigned short* distance, unsigned short* length) { in ZopfliFindLongestMatch() argument 238 if (TryGetFromLongestMatchCache(s, pos, &limit, sublen, distance, length)) { in ZopfliFindLongestMatch() 252 *distance = 0; in ZopfliFindLongestMatch() [all …]
|
| /netbsd-src/external/bsd/ntp/dist/scripts/ntptrace/ |
| H A D | ntptrace-opts.def | 55 % ntptrace localhost: stratum 4, offset 0.0019529, synch distance 0.144135 56 server2ozo.com: stratum 2, offset 0.0124263, synch distance 0.115784 usndh.edu: 57 stratum 1, offset 0.0019298, synch distance 0.011993, refid 'WWVB' 63 synchronization distance, and (only for stratum-1 servers) the reference clock 65 count to the primary source, while the synchronization distance is the
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | tree-predcom.cc | 262 unsigned distance; member in dref_d 483 bool valid_initializer_p (struct data_reference *ref, unsigned distance, 513 gimple *find_associative_operation_root (gimple *stmt, unsigned *distance); 552 fprintf (file, " distance %u\n", ref->distance); in dump_dref() 563 fprintf (file, " distance %u\n", ref->distance); in dump_dref() 1043 dataref->distance = 0; in split_data_refs_to_components() 1198 get_chain_last_write_at (chain_p chain, unsigned distance) in get_chain_last_write_at() argument 1202 && distance == chain->refs[i - 1]->distance) in get_chain_last_write_at() 1216 unsigned distance = chain->refs[load_idx]->distance; in get_chain_last_write_before_load() local 1220 && distance == chain->refs[i - 1]->distance) in get_chain_last_write_before_load() [all …]
|
| H A D | ddg.cc | 174 int latency, distance = 0; in create_ddg_dep_from_intra_loop_link() local 223 e = create_ddg_edge (src_node, dest_node, t, dt, latency, distance); in create_ddg_dep_from_intra_loop_link() 230 dep_type d_t, dep_data_type d_dt, int distance) in create_ddg_dep_no_link() argument 252 e = create_ddg_edge (from, to, d_t, d_dt, l, distance); in create_ddg_dep_no_link() 253 if (distance > 0) in create_ddg_dep_no_link() 657 dep_c, e->latency, e->distance, INSN_UID (e->dest->insn)); in print_ddg_edge() 705 if (e->distance > 0) in vcg_print_ddg() 712 fprintf (file, "label: \"%d_%d\"}\n", e->latency, e->distance); in vcg_print_ddg() 754 e->distance = d; in create_ddg_edge() 792 int distance = backarc->distance; in set_recurrence_length() local [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | tree-predcom.c | 261 unsigned distance; 403 fprintf (file, " distance %u\n", ref->distance); in dump_dref() 414 fprintf (file, " distance %u\n", ref->distance); in dump_dref() 911 dataref->distance = 0; in split_data_refs_to_components() 1072 get_chain_last_write_at (chain_p chain, unsigned distance) in get_chain_last_write_at() argument 1076 && distance == chain->refs[i - 1]->distance) in get_chain_last_write_at() 1090 unsigned distance = chain->refs[load_idx]->distance; in get_chain_last_write_before_load() local 1094 && distance == chain->refs[i - 1]->distance) in get_chain_last_write_before_load() 1113 ref->distance = dist.to_uhwi (); in add_ref_to_chain() 1115 if (ref->distance >= chain->length) in add_ref_to_chain() [all …]
|
| H A D | ddg.c | 174 int latency, distance = 0; in create_ddg_dep_from_intra_loop_link() local 223 e = create_ddg_edge (src_node, dest_node, t, dt, latency, distance); in create_ddg_dep_from_intra_loop_link() 230 dep_type d_t, dep_data_type d_dt, int distance) in create_ddg_dep_no_link() argument 252 e = create_ddg_edge (from, to, d_t, d_dt, l, distance); in create_ddg_dep_no_link() 253 if (distance > 0) in create_ddg_dep_no_link() 657 dep_c, e->latency, e->distance, INSN_UID (e->dest->insn)); in print_ddg_edge() 705 if (e->distance > 0) in vcg_print_ddg() 712 fprintf (file, "label: \"%d_%d\"}\n", e->latency, e->distance); in vcg_print_ddg() 754 e->distance = d; in create_ddg_edge() 792 int distance = backarc->distance; in set_recurrence_length() local [all …]
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/hisilicon/ |
| H A D | hip07-d05.dts | 23 distance-map { 24 compatible = "numa-distance-map-v1"; 25 distance-matrix = <0 0 10>,
|
| /netbsd-src/libexec/ld.elf_so/arch/powerpc/ |
| H A D | ppc_reloc.c | 407 int distance; in _rtld_relocate_plt_lazy() 419 distance = (Elf_Addr)pltresolve - (Elf_Addr)where; in _rtld_relocate_plt_lazy() 420 *where++ = 0x48000000 | (distance & 0x03fffffc); 475 ptrdiff_t distance = value - (Elf_Addr)where; in _rtld_relocate_plt_object() 484 } else if (labs(distance) < 32*1024*1024) { /* inside 32MB? */ in _rtld_relocate_plt_object() 486 *where = 0x48000000 | (distance & 0x03fffffc); in _rtld_relocate_plt_object() 522 distance = (Elf_Addr)pltcall - (Elf_Addr)where; in _rtld_bind() 523 *where++ = 0x48000000 | (distance & 0x03fffffc); in _rtld_bind() 460 ptrdiff_t distance = value - (Elf_Addr)where; _rtld_relocate_plt_object() local
|
| /netbsd-src/external/gpl2/groff/dist/src/roff/troff/ |
| H A D | column.cpp | 86 virtual vunits distance(); 98 vunits distance(); 174 vunits output_line::distance() in distance() function in output_line 194 vunits position_output_line::distance() in distance() function in position_output_line 338 bottom += ln->distance(); in add_output_line() 390 bottom -= ln->distance(); in trim() 402 bottom += ln->distance(); in reset() 412 b += ln->distance(); in check_bottom() 424 vpos += ln->distance(); in output()
|
| /netbsd-src/games/robots/ |
| H A D | auto.c | 63 static int distance(int, int, int, int); 78 distance(int x1, int y1, int x2, int y2) in distance() function 179 tdist = distance(My_pos.x, My_pos.y, rob->x, rob->y); in closest_robot() 204 tdist = distance(My_pos.x, My_pos.y, hp->x, hp->y); in closest_heap() 359 robot_heap = distance(robot_close->x, robot_close->y, in automove()
|
| /netbsd-src/games/sail/ |
| H A D | misc.c | 49 #define distance(x,y) \ macro 68 result = bb = distance(bow2r - bow1r, bow2c - bow1c); in range() 74 bs = distance((bow2r - stern1r), (bow2c - stern1c)); in range() 75 sb = distance((bow1r - stern2r), (bow1c - stern2c)); in range() 76 ss = distance((stern2r - stern1r) ,(stern2c - stern1c)); in range()
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/zmod/ |
| H A D | deflate.h | 315 # define _tr_tally_dist(s, distance, length, flush) \ argument 317 ush dist = (distance); \ 327 # define _tr_tally_dist(s, distance, length, flush) \ argument 328 flush = _tr_tally(s, distance, length)
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/ |
| H A D | speller.c | 223 for (size_t distance = 0; distance < maxdist; distance++) in speller() local 224 { void *p = spellerX(seed, seedlen, fp, fparg, charset, distance); in speller()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | Parallel.h | 82 RandomAccessIterator Mid = Start + (std::distance(Start, End) / 2); in medianOf3() 94 if (std::distance(Start, End) < detail::MinParallelSize || Depth == 0) { in parallel_quick_sort() 121 llvm::Log2_64(std::distance(Start, End)) + 1); in parallel_sort() 136 auto NumItems = std::distance(Begin, End); in parallel_for_each() 150 while (TaskSize < std::distance(Begin, End)) { in parallel_for_each() 195 size_t NumInputs = std::distance(Begin, End); in parallel_transform_reduce()
|
| /netbsd-src/external/gpl3/gdb/dist/zlib/ |
| H A D | deflate.h | 329 # define _tr_tally_dist(s, distance, length, flush) \ argument 331 ush dist = (ush)(distance); \ 342 # define _tr_tally_dist(s, distance, length, flush) \ argument 343 flush = _tr_tally(s, distance, length)
|
| /netbsd-src/external/gpl3/binutils.old/dist/zlib/ |
| H A D | deflate.h | 329 # define _tr_tally_dist(s, distance, length, flush) \ argument 331 ush dist = (ush)(distance); \ 342 # define _tr_tally_dist(s, distance, length, flush) \ argument 343 flush = _tr_tally(s, distance, length)
|
| /netbsd-src/external/gpl3/binutils/dist/zlib/ |
| H A D | deflate.h | 329 # define _tr_tally_dist(s, distance, length, flush) \ argument 331 ush dist = (ush)(distance); \ 342 # define _tr_tally_dist(s, distance, length, flush) \ argument 343 flush = _tr_tally(s, distance, length)
|