Lines Matching refs:data
1149 static void radix_count(const RCCMPEntry *data, int size,
1155 int v = data[i].value;
1170 static void radix_sort_pass(RCCMPEntry *dst, const RCCMPEntry *data,
1176 int v = get_bucket(data[i].value, shift);
1178 dst[pos] = data[i];
1182 static void radix_sort(RCCMPEntry *data, RCCMPEntry *tmp, int size)
1185 radix_count(data, size, buckets);
1186 radix_sort_pass(tmp, data, size, buckets[0], 0);
1187 radix_sort_pass(data, tmp, size, buckets[1], 1);
1189 radix_sort_pass(tmp, data, size, buckets[2], 2);
1190 radix_sort_pass(data, tmp, size, buckets[3], 3);
1267 buf = pkt->data;
1273 ctx->src[i] = frame->data[i];