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;
443 * @maskp: pointer to bitmap array that will contain result.
676 * @maskp: pointer to bitmap array that will contain result.
729 * @maskp: pointer to bitmap array that will contain result.
838 * @dst: remapped result
858 * Apply the above specified mapping to @src, placing the result in
947 * of such an empty result is not desired, one way to avoid it is
990 * avoid the possibility of an empty @dst result::
999 * The tmp column shows the intermediate result, as computed by
1021 * into tmp, then the @dst result would have been empty.