HomeSort by relevance Sort by last modified time
    Searched refs:dataWidth (Results 1 - 3 of 3) sorted by null

  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
PlanarYUVLuminanceSource.java 36 private final int dataWidth;
41 public PlanarYUVLuminanceSource(byte[] yuvData, int dataWidth, int dataHeight, int left, int top,
45 if (left + width > dataWidth || top + height > dataHeight) {
50 this.dataWidth = dataWidth;
68 int offset = (y + top) * dataWidth + left;
80 if (width == dataWidth && height == dataHeight) {
86 int inputOffset = top * dataWidth + left;
89 if (width == dataWidth) {
99 inputOffset += dataWidth;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macwm.c 91 short tableSize, dataWidth;
95 dataWidth = (pTableGammaIn->gDataWidth + 7) / 8; /* number of bytes per entry */
97 (pTableGammaIn->gChanCnt * pTableGammaIn->gDataCnt * dataWidth);
288 short tableSize, dataWidth;
290 dataWidth = (bits + 7) / 8; /* number of bytes per entry */
291 tableSize = sizeof (GammaTbl) + (channels * entries * dataWidth);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListItemView.java 357 final int dataWidth;
362 dataWidth = ((totalWidth * mDataViewWidthWeight)
367 dataWidth = effectiveWidth;
371 dataWidth = 0;
380 mDataView.measure(MeasureSpec.makeMeasureSpec(dataWidth, MeasureSpec.EXACTLY),
    [all...]

Completed in 232 milliseconds