HomeSort by relevance Sort by last modified time
    Searched refs:cw (Results 51 - 75 of 177) sorted by null

1 23 4 5 6 7 8

  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/asm/
sigcontext32.h 40 __u32 cw; member in struct:_fpstate_ia32
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/dvb/
ca.h 64 unsigned char cw[8]; member in struct:ca_descr
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/
sigcontext.h 40 unsigned long cw; member in struct:_fpstate
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DelegateClassAdapterTest.java 86 ClassWriter cw = new ClassWriter(0 /*flags*/); local
91 mLog, cw, internalClassName, delegateMethods);
132 cl2.add(NATIVE_CLASS_NAME, cw);
148 ClassWriter cw = new ClassWriter(0 /*flags*/); local
155 mLog, cw, internalClassName, delegateMethods);
163 ClassWriter cw = new ClassWriter(0 /*flags*/); local
169 mLog, cw, internalClassName, delegateMethods);
207 cl2.add(NATIVE_CLASS_NAME, cw);
348 ClassWriter cw = new ClassWriter(0); local
349 cr.accept(cw, 0)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_rss.c 150 int cw, ccw; local
152 /* Hardware frontwinding is always CW, so if ours is also CW,
158 cw = 1;
162 cw = 0;
170 EMIT_RS( svga, curr->stencil[cw].func, STENCILFUNC, fail );
171 EMIT_RS( svga, curr->stencil[cw].fail, STENCILFAIL, fail );
172 EMIT_RS( svga, curr->stencil[cw].zfail, STENCILZFAIL, fail );
173 EMIT_RS( svga, curr->stencil[cw].pass, STENCILPASS, fail );
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 150 int cw, ccw; local
152 /* Hardware frontwinding is always CW, so if ours is also CW,
158 cw = 1;
162 cw = 0;
170 EMIT_RS( svga, curr->stencil[cw].func, STENCILFUNC, fail );
171 EMIT_RS( svga, curr->stencil[cw].fail, STENCILFAIL, fail );
172 EMIT_RS( svga, curr->stencil[cw].zfail, STENCILZFAIL, fail );
173 EMIT_RS( svga, curr->stencil[cw].pass, STENCILPASS, fail );
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_debug_clip.c 85 const GLfloat cw = from[3]; local
87 if ( -cx + cw < 0 ) mask |= CLIP_RIGHT_BIT;
88 if ( cx + cw < 0 ) mask |= CLIP_LEFT_BIT;
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT;
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT;
92 if ( -cz + cw < 0 ) mask |= CLIP_FAR_BIT;
93 if ( cz + cw < 0 ) mask |= CLIP_NEAR_BIT;
105 GLfloat oow = 1.0F / cw;
  /external/mesa3d/src/mesa/math/
m_debug_clip.c 85 const GLfloat cw = from[3]; local
87 if ( -cx + cw < 0 ) mask |= CLIP_RIGHT_BIT;
88 if ( cx + cw < 0 ) mask |= CLIP_LEFT_BIT;
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT;
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT;
92 if ( -cz + cw < 0 ) mask |= CLIP_FAR_BIT;
93 if ( cz + cw < 0 ) mask |= CLIP_NEAR_BIT;
105 GLfloat oow = 1.0F / cw;
  /external/chromium_org/third_party/libwebp/dec/
buffer.c 173 const int cw = options->crop_width; local
177 if (x < 0 || y < 0 || cw <= 0 || ch <= 0 || x + cw > w || y + ch > h) {
180 w = cw;
  /external/webp/src/dec/
buffer.c 173 const int cw = options->crop_width; local
177 if (x < 0 || y < 0 || cw <= 0 || ch <= 0 || x + cw > w || y + ch > h) {
180 w = cw;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_unfilled.c 137 unsigned cw = header->det >= 0.0; local
138 unsigned mode = unfilled->mode[cw];
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_unfilled.c 137 unsigned cw = header->det >= 0.0; local
138 unsigned mode = unfilled->mode[cw];
  /external/compiler-rt/android/include/sys/
ucontext.h 55 unsigned long cw; member in struct:_libc_fpstate
  /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/bits/
sigcontext.h 53 __uint32_t cw; member in struct:_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/bits/
sigcontext.h 53 __uint32_t cw; member in struct:_fpstate
  /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...]

Completed in 1096 milliseconds

1 23 4 5 6 7 8