Lines Matching refs:nums
399 size_t nums = BWSLEN(src) - offset; in bwsnocpy() local
401 if (nums > BWSLEN(dst)) in bwsnocpy()
402 nums = BWSLEN(dst); in bwsnocpy()
403 if (nums > size) in bwsnocpy()
404 nums = size; in bwsnocpy()
406 memcpy(dst->cdata.str, src->cdata.str + offset, nums); in bwsnocpy()
407 dst->cdata.len = nums; in bwsnocpy()
408 dst->cdata.str[nums] = '\0'; in bwsnocpy()
411 SIZEOF_WCHAR_STRING(nums)); in bwsnocpy()
412 dst->wdata.len = nums; in bwsnocpy()
413 dst->wdata.str[nums] = L'\0'; in bwsnocpy()
453 int nums; in bwsfwrite() local
455 nums = fwprintf(f, L"%lc", *s); in bwsfwrite()
457 if (nums != 1) in bwsfwrite()
461 int nums; in bwsfwrite() local
463 nums = fwprintf(f, L"%ls", s); in bwsfwrite()
465 if (nums < 1) in bwsfwrite()
467 printed += nums; in bwsfwrite()