| /src/games/trek/ | 
| checkcond.c | 82 	if (Quad[Ship.quadx][Ship.quady].stars < 0) 84 	if (Quad[Ship.quadx][Ship.quady].stars < 0)
 
 | 
| lrscan.c | 50 **	is the number of stars.  If the printout is "///" it means 95 			if (q->stars < 0) {
 101 			q->scanned = q->klings * 100 + q->bases * 10 + q->stars;
 
 | 
| snova.c | 84 			if (q->stars > 0) 89 			n = ranf(q->stars);
 133 	dy = q->stars;
 146 	q->stars = -1;
 
 | 
| nova.c | 52 **	Stars that go nova cause stars which surround them to undergo 64 	if (Sect[x][y] != STAR || Quad[Ship.quadx][Ship.quady].stars < 0)
 82 	Quad[Ship.quadx][Ship.quady].stars -= 1;
 
 | 
| initquad.c | 73 	if (q->stars < 0) 77 	nstars = q->stars;
 128 	/* initialize stars */
 
 | 
| events.c | 154 						if (q->stars >= 0) 278 				 * one, which has some inhabited stars which
 284 				      q->stars < 0 ||
 367 						    q->stars < 0)
 
 | 
| attack.c | 89 	if (Etc.nkling <= 0 || Quad[Ship.quadx][Ship.quady].stars < 0) 
 | 
| srscan.c | 95 		q->scanned = q->klings * 100 + q->bases * 10 + q->stars; 
 | 
| kill.c | 180 	q->stars -= 1; 
 | 
| klmove.c | 58 **	stars whenever possible.  Nextx and nexty are the next 64 **	course around stars.
 134 				    Quad[qx][qy].stars < 0 ||
 
 | 
| torped.c | 208 		if (damaged(TORPED) || Quad[Ship.quadx][Ship.quady].stars < 0) 
 | 
| trek.h | 61 	short	stars;		/* number of stars in this quadrant */  member in struct:quad 249 	int	kills;		/* number of stars killed */
 
 | 
| setup.c | 228 	/* setup stars */ 235 			q->stars = ranf(9) + 1;
 237 			s5 = q->stars / 5;
 
 | 
| /src/sbin/fsck/ | 
| progress.c | 102 	 * stars should contain at least sizeof(buf) - BAROVERHEAD 105 	static const char stars[] =  local in function:progress_bar
 132 		    "|%.*s%*s| ", i, stars, barlength - i, "");
 
 | 
| /src/usr.bin/patch/ | 
| patch.c | 714 	const char	*stars = (diff_type >= NEW_CONTEXT_DIFF ? " ****" : "");  local in function:abort_context_hunk 722 				fprintf(rejfp, "*** 0%s\n", stars);
 724 				fprintf(rejfp, "*** %ld%s\n", oldfirst, stars);
 727 				    oldlast, stars);
 
 | 
| /src/usr.bin/ftp/ | 
| progressbar.c | 151 					 * stars should contain at least 154 	static const char	stars[] =  local in function:progressmeter
 225 			 * the number of stars won't exceed the buffer size
 233 			    "|%.*s%*s|", i, stars, (int)(barlength - i), "");
 
 | 
| /src/sbin/raidctl/ | 
| raidctl.c | 1163 const char stars[] = "****************************************"  variable in typeref:typename:const char[] 1185 	snprintf(string,max_strlen,"%s",stars+offset);
 
 |