Lines Matching refs:result
114 * word above and make them the top rem bits of result.
159 * word below and make them the bottom rem bits of result.
245 unsigned long result = 0;
248 result |= (dst[k] = bitmap1[k] & bitmap2[k]);
250 result |= (dst[k] = bitmap1[k] & bitmap2[k] &
252 return result != 0;
283 unsigned long result = 0;
286 result |= (dst[k] = bitmap1[k] & ~bitmap2[k]);
288 result |= (dst[k] = bitmap1[k] & ~bitmap2[k] &
290 return result != 0;
454 * @maskp: pointer to bitmap array that will contain result.
580 * move to use bin_attribute. In result, we have to pass the corresponding
609 * result may be incorrect, and format may be broken.
843 * @maskp: pointer to bitmap array that will contain result.
896 * @maskp: pointer to bitmap array that will contain result.
973 * @dst: remapped result
993 * Apply the above specified mapping to @src, placing the result in
1085 * of such an empty result is not desired, one way to avoid it is
1128 * avoid the possibility of an empty @dst result::
1137 * The tmp column shows the intermediate result, as computed by
1159 * into tmp, then the @dst result would have been empty.