| /src/lib/libc/hash/md2/ | 
| md2.c | 143 	unsigned int idx, piece;  local in function:MD2Update 148 	for (idx = 0; idx < inputLen; idx += piece) {
 149 		piece = 32 - context->i;
 150 		if ((inputLen - idx) < piece)
 151 			piece = inputLen - idx;
 152 		memcpy(&context->X[context->i], &input[idx], (size_t)piece);
 153 		if ((context->i += piece) == 32)
 
 | 
| /src/lib/libc/gen/ | 
| sysctlgetmibinfo.c | 417 	const char *piece, *dot;  local in function:sysctlgetmibinfo_unlocked 483 	piece = gname;
 484 	while (piece != NULL && *piece != '\0') {
 488 		dot = strchr(piece, sep[0]);
 490 			l = strlcpy(token, piece, sizeof(token));
 492 				COPY_OUT_DATA(piece, cname, csz, namelenp, nl);
 497 		else if (dot - piece > (intptr_t)(sizeof(token) - 1)) {
 503 			strncpy(token, piece, (size_t)(dot - piece));
 [all...]
 | 
| /src/sys/fs/udf/ | 
| udf_readwrite.c | 278  * For reading, the size of allocated piece is returned in multiple of sector 293 	int piece;  local in function:udf_read_phys_sectors
 316 		piece = MIN(MAXPHYS/sector_size, sectors);
 317 		DPRINTF(READ, ("read in %d + %d\n", (uint32_t) rblkno, piece));
 320 		nestiobuf_setup(buf, nestbuf, buf_offset, piece * sector_size);
 334 		lblkno     += piece;
 335 		rblkno     += piece;
 336 		buf_offset += piece * sector_size;
 337 		sectors    -= piece;
 361 	/* read initial piece */
 435  int piece;  local in function:udf_write_phys_buf
 [all...]
 | 
| /src/usr.sbin/makefs/ | 
| udf.c | 487 udf_append_file_mapping(union dscrptr *dscr, struct long_ad *piece) 534 	use_shorts = (udf_rw16(piece->loc.part_num) == context.metadata_part);
 538 	size = UDF_EXT_LEN(udf_rw32(piece->len));
 554 			last_part_num = udf_rw16(piece->loc.part_num);
 568 	piece_len      = UDF_EXT_LEN(udf_rw32(piece->len));
 569 	piece_lb_num   = udf_rw32(piece->loc.lb_num);
 570 	piece_part_num = udf_rw16(piece->loc.part_num);
 604 			piece->len        = udf_rw32(piece_len);
 605 			piece->loc.lb_num = udf_rw32(piece_lb_num);
 606 			memcpy(pos, piece, long_len)
 [all...]
 | 
| /src/usr.bin/make/ | 
| dir.c | 772 	const char *prefix, *middle, *piece, *middle_end, *suffix;  local in function:DirExpandCurly 791 	piece = middle;
 792 	while (piece < middle_end + 1) {
 793 		const char *piece_end = separator_comma(piece);
 794 		size_t piece_len = (size_t)(piece_end - piece);
 796 		char *file = concat3(prefix, prefix_len, piece, piece_len,
 807 		piece = piece_end + 1;
 1396 	/* XXX: Is every piece of memory freed as it should? */
 
 | 
| /src/sbin/fsck_udf/ | 
| main.c | 536 udf_quick_check_fids_piece(uint8_t *piece, uint32_t piece_len, 547 		fid = (struct fileid_desc *) (piece + offset);
 581 udf_fids_fixup(uint8_t *piece, uint32_t piece_len,
 592 		fid = (struct fileid_desc *) (piece + offset);
 707 		/* check all current overlaps with the piece we have here */
 716 			/* piece before overlap? */
 719 			/* piece after overlap? */
 758 	uint8_t *bpos, *piece;  local in function:udf_process_ad
 824 		piece = calloc(1, piece_alloc_len);
 825 		if (piece == NULL
 [all...]
 | 
| /src/usr.bin/make/unit-tests/ | 
| dep-var.mk | 66 # To trigger this piece of code, the variable name must contain "$)" or "$:" 
 | 
| varparse-errors.mk | 55 # misleading anyway, that piece of code is probably not necessary.  The wrong 
 | 
| var-op-expand.mk | 88 # would have to call VarSubstExpr somehow since this is the only piece of 
 | 
| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ | 
| meson8.dtsi | 185 		 * piece of ARC code ("arc_power" in the vendor u-boot tree) 
 |