Searched refs:pshift (Results 1 - 2 of 2) sorted by relevance
/third_party/musl/src/stdlib/ |
H A D | qsort.c | 92 static void sift(unsigned char *head, size_t width, cmpfun cmp, void *arg, int pshift, size_t lp[]) in sift() argument 99 while(pshift > 1) { in sift() 101 lf = head - width - lp[pshift - 2]; in sift() 109 pshift -= 1; in sift() 113 pshift -= 2; in sift() 119 static void trinkle(unsigned char *head, size_t width, cmpfun cmp, void *arg, size_t pp[2], int pshift, int trusty, size_t lp[]) in trinkle() argument 133 stepson = head - lp[pshift]; in trinkle() 137 if(!trusty && pshift > 1) { in trinkle() 139 lf = head - width - lp[pshift - 2]; in trinkle() 149 pshift in trinkle() 164 int pshift = 1; __qsort_r() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | diracdec.c | 98 int pshift; member 151 int pshift; /* pixel shift = bit_depth > 8 */ member 308 s->plane[i].idwt.buf_base = av_calloc(w + max_xblen, h * (2 << s->pshift)); in alloc_sequence_buffers() 309 s->plane[i].idwt.tmp = av_malloc_array((w+16), 2 << s->pshift); in alloc_sequence_buffers() 310 s->plane[i].idwt.buf = s->plane[i].idwt.buf_base + (top_padding*w)*(2 << s->pshift); in alloc_sequence_buffers() 458 const int mstride = -(b->stride >> (1+b->pshift)); \ 461 const int stride = b->parent->stride >> (1+b->parent->pshift); \ 541 if (b->pshift) { in codeblock() 555 if (b->pshift) { in codeblock() 579 buf += (b->stride >> (1+b->pshift)); \ [all...] |
Completed in 3 milliseconds