HomeSort by relevance Sort by last modified time
    Searched defs:cw (Results 76 - 100 of 140) sorted by null

1 2 34 5 6

  /external/chromium_org/third_party/libjpeg_turbo/
turbojpeg.c 554 int pw, ph, cw, ch; local
559 cw=pw*8/tjMCUWidth[subsamp]; ch=ph*8/tjMCUHeight[subsamp];
560 retval=PAD(pw, 4)*ph + (subsamp==TJSAMP_GRAY? 0:PAD(cw, 4)*ch*2);
680 int row, pw, ph, cw[MAX_COMPONENTS], ch[MAX_COMPONENTS]; local
787 cw[i]=pw*compptr->h_samp_factor/cinfo->max_h_samp_factor;
794 ptr+=PAD(cw[i], 4);
808 compptr->v_samp_factor, cw[i]);
1057 int cw[MAX_COMPONENTS], ch[MAX_COMPONENTS], iw[MAX_COMPONENTS], local
1094 cw[i]=PAD(dinfo->image_width, dinfo->max_h_samp_factor)
1098 if(iw[i]!=cw[i] || ih!=ch[i]) usetmpbuf=1
    [all...]
  /external/chromium_org/ui/views/controls/
scroll_view.cc 559 int cw = contents_->width(); local
561 horiz_sb_->Update(vw, cw, -origin);
  /external/kernel-headers/original/uapi/asm-x86/asm/
sigcontext.h 73 unsigned long cw; member in struct:_fpstate
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
tcd.h 121 OPJ_UINT32 cw, ch; /* number of precinct in width and height */ member in struct:opj_tcd_precinct
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CommonControllerOverlay.java 294 int cw = view.getMeasuredWidth(); local
296 int cl = (r - l - cw) / 2;
298 view.layout(cl, ct, cl + cw, ct + ch);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageDraw.java 258 int cw = canvas.getWidth(); local
260 int centerx = cw / 2;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm/
sigcontext.h 73 unsigned long cw; member in struct:_fpstate
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
ucontext.h 210 unsigned long int cw; member in struct:_libc_fpstate
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/
sigcontext.h 73 unsigned long cw; member in struct:_fpstate
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
ucontext.h 210 unsigned long int cw; member in struct:_libc_fpstate
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/asm/
sigcontext.h 54 unsigned long cw; member in struct:_fpstate
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/asm/
sigcontext.h 54 unsigned long cw; member in struct:_fpstate
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
MethodWriter.java 127 final ClassWriter cw; field in class:MethodWriter
158 * the ClassReader associated to this writer in <code>cw.cr</code>. More
160 * <code>cw.cr.b</code>.
166 * the ClassReader associated to this writer in <code>cw.cr</code>. More
168 * <code>cw.cr.b</code>.
399 * @param cw the class writer in which the method must be added.
412 final ClassWriter cw,
421 if (cw.firstMethod == null) {
422 cw.firstMethod = this;
424 cw.lastMethod.next = this;
    [all...]
ClassWriter.java 839 ClassWriter cw = new ClassWriter(COMPUTE_FRAMES); local
840 new ClassReader(out.data).accept(cw, ClassReader.SKIP_FRAMES);
841 return cw.toByteArray();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformationMatrix.cpp 477 double cx, cy, cz, cw; local
514 cw = aw * scale + bw * invscale;
516 qa[0] = cx; qa[1] = cy; qa[2] = cz; qa[3] = cw;
    [all...]
  /external/mksh/src/
eval.c 1118 int cw; local
1130 if ((cw = utf_wcwidth(wc)) == -1) {
1135 c += cw;
    [all...]
expr.c 788 int cw; local
795 ((cw = utf_wcwidth(wc)) == -1)) {
800 width += cw;
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 172 ContextWrapper cw = new ContextWrapper(realActivity); local
173 cw.startService(new Intent(cw, MediaPlaybackService.class));
175 if (cw.bindService((new Intent()).setClass(cw, MediaPlaybackService.class), sb, 0)) {
176 sConnectionMap.put(cw, sb);
177 return new ServiceToken(cw);
188 ContextWrapper cw = token.mWrappedContext; local
189 ServiceBinder sb = sConnectionMap.remove(cw);
194 cw.unbindService(sb)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlockLineLayout.cpp 1200 LayoutUnit cw = containingBlock ? containingBlock->contentLogicalWidth() : LayoutUnit(); local
    [all...]
  /external/fio/
gfio.c 499 struct connection_widgets *cw = data; local
509 ctext = gtk_combo_box_text_get_active_text(GTK_COMBO_BOX_TEXT(cw->combo));
515 text = gtk_entry_get_text(GTK_ENTRY(cw->hentry));
523 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cw->button), 1);
524 gtk_widget_set_sensitive(cw->button, 1);
526 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cw->button), 0);
527 gtk_widget_set_sensitive(cw->button, 0);
534 struct connection_widgets cw; local
556 cw.hentry = gtk_entry_new();
557 gtk_entry_set_text(GTK_ENTRY(cw.hentry), "localhost")
601 g_signal_connect(G_OBJECT(cw.hentry), "changed", G_CALLBACK(hostname_cb), &cw); local
602 g_signal_connect(G_OBJECT(cw.combo), "changed", G_CALLBACK(hostname_cb), &cw); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp 86 void checkAllocWeights(CollationWeights &cw,
497 void CollationTest::checkAllocWeights(CollationWeights &cw,
500 if(!cw.allocWeights(lowerLimit, upperLimit, n)) {
508 uint32_t w = cw.nextWeight();
533 CollationWeights cw; local
537 cw.initForPrimary(FALSE);
539 checkAllocWeights(cw, 0x10000000, 0x13000000, 255, 1, 1);
540 checkAllocWeights(cw, 0x10000000, 0x13000000, 255, 2, 254);
542 checkAllocWeights(cw, 0x10fefe40, 0x12030300, 260, 2, 255);
544 checkAllocWeights(cw, 0x10fefe40, 0x12030300, 600, 2, 254)
    [all...]
  /external/opencv/ml/src/
mlsvm.cpp 1369 const CvMat* cw = params.class_weights; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSPanel.java 430 final int cw = record.row == 0 ? mLargeCellWidth : mCellWidth; local
432 record.tileView.measure(exactly(cw), exactly(ch));
460 final int cw = record.row == 0 ? mLargeCellWidth : mCellWidth; local
461 final int extra = (w - cw * cols) / (cols + 1);
462 int left = record.col * cw + (record.col + 1) * extra;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 965 new CdmaConnection(mPhone.getContext(), cw, this, mRingingCall); local
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_q6vdec.h 295 struct vdec_cropping_window cw; member in union:vdec_property

Completed in 641 milliseconds

1 2 34 5 6