Searched refs:bindex (Results 1 – 11 of 11) sorted by relevance
/external/tensorflow/tensorflow/core/framework/ |
D | ops_util.cc | 41 const int stride, const int pad_size, int* bindex, in GetBroadcastSize() argument 48 *bindex = index * stride; in GetBroadcastSize() 50 if (*bindex < pad_size) { in GetBroadcastSize() 53 *bsize = ksize + *bindex - pad_size; in GetBroadcastSize() 54 *bindex = 0; in GetBroadcastSize() 57 *bindex -= pad_size; in GetBroadcastSize() 59 if (*bindex + ksize > in_size) { in GetBroadcastSize() 60 *bsize = std::min((in_size - *bindex), ksize); in GetBroadcastSize()
|
D | ops_util.h | 39 const int stride, const int pad_size, int* bindex,
|
/external/libvpx/libvpx/vp8/common/ |
D | debugmodes.c | 78 int bindex; in vp8_print_modes_and_motion_vectors() local 82 bindex = (b_row & 3) * 4 + (b_col & 3); in vp8_print_modes_and_motion_vectors() 85 fprintf(mvs, "%2d ", mi[mb_index].bmi[bindex].as_mode); in vp8_print_modes_and_motion_vectors() 120 int bindex; in vp8_print_modes_and_motion_vectors() local 124 bindex = (b_row & 3) * 4 + (b_col & 3); in vp8_print_modes_and_motion_vectors() 125 fprintf(mvs, "%3d:%-3d ", mi[mb_index].bmi[bindex].mv.as_mv.row, in vp8_print_modes_and_motion_vectors() 126 mi[mb_index].bmi[bindex].mv.as_mv.col); in vp8_print_modes_and_motion_vectors()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | SuballocatedIntVector.java | 473 int bindex=index>>>m_SHIFT; in indexOf() local 478 for(;bindex<maxindex;++bindex) in indexOf() 480 block=m_map[bindex]; in indexOf() 484 return offset+bindex*m_blocksize; in indexOf()
|
/external/libjpeg-turbo/ |
D | rdbmp.c | 199 register int bindex = rgb_blue[cinfo->in_color_space]; in get_8bit_row() local 210 outptr[bindex] = colormap[2][t]; in get_8bit_row() 221 outptr[bindex] = colormap[2][t]; in get_8bit_row() 269 register int bindex = rgb_blue[cinfo->in_color_space]; in get_24bit_row() local 275 outptr[bindex] = *inptr++; /* can omit GETJSAMPLE() safely */ in get_24bit_row() 283 outptr[bindex] = *inptr++; /* can omit GETJSAMPLE() safely */ in get_24bit_row() 335 register int bindex = rgb_blue[cinfo->in_color_space]; in get_32bit_row() local 341 outptr[bindex] = *inptr++; /* can omit GETJSAMPLE() safely */ in get_32bit_row() 349 outptr[bindex] = *inptr++; /* can omit GETJSAMPLE() safely */ in get_32bit_row()
|
D | rdppm.c | 166 ptr[rindex] = ptr[gindex] = ptr[bindex] = read_op; \ 185 register int bindex = rgb_blue[cinfo->in_color_space]; in get_text_gray_rgb_row() local 241 ptr[bindex] = read_op; \ 259 register int bindex = rgb_blue[cinfo->in_color_space]; in get_text_rgb_row() local 349 register int bindex = rgb_blue[cinfo->in_color_space]; in get_gray_rgb_row() local 417 register int bindex = rgb_blue[cinfo->in_color_space]; in get_rgb_row() local
|
D | wrppm.c | 141 register int bindex = rgb_blue[cinfo->out_color_space]; in put_rgb() local 149 PUTPPMSAMPLE(bufferptr, ptr[bindex]); in put_rgb()
|
D | wrbmp.c | 152 register int bindex = rgb_blue[cinfo->out_color_space]; in put_pixel_rows() local 157 outptr[0] = inptr[bindex]; in put_pixel_rows()
|
D | tjbench.c | 281 unsigned long bindex = index2 + tjBlueOffset[pf]; in decomp() local 284 (double)srcBuf[bindex] * 0.114 + 0.5); in decomp() 290 dstBuf[bindex] = abs(dstBuf[bindex] - y); in decomp()
|
/external/jline/src/src/main/java/jline/ |
D | ArgumentCompletor.java | 272 int bindex = -1; in delimit() local 278 bindex = args.size(); in delimit() 295 toArray(new String[args.size()]), bindex, argpos, cursor); in delimit()
|
/external/libjpeg-turbo/java/ |
D | TJBench.java | 123 int bindex = TJ.getBlueOffset(pixelFormat); in loadImage() local 132 dstBuf[dstPtr + bindex] = (byte)(rgb[rgbPtr] & 0xff); in loadImage() 147 int bindex = TJ.getBlueOffset(pixelFormat); in saveImage() local 153 (srcBuf[srcPtr + bindex] & 0xff); in saveImage() 302 int bindex = index2 + TJ.getBlueOffset(pf); in decomp() local 305 (double)(srcBuf[bindex] & 0xff) * 0.114 + 0.5); in decomp() 311 dstBuf[bindex] = (byte)Math.abs((dstBuf[bindex] & 0xff) - lum); in decomp()
|