Searched refs:cw (Results 1 - 25 of 45) sorted by relevance

12

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DCharArrayWriterTest.java29 CharArrayWriter cw; field in class:CharArrayWriterTest
37 cw = new CharArrayWriter(90);
38 assertEquals("Created incorrect writer", 0, cw.size());
45 cw = new CharArrayWriter();
46 assertEquals("Created incorrect writer", 0, cw.size());
53 cw.close();
60 cw.flush();
67 cw.write("HelloWorld", 5, 5);
68 cw.reset();
69 cw
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DBase64.java22 CharArrayWriter cw = new CharArrayWriter((4 * content.length) / 3);
41 cw.write(alphabet[x >> 18]);
42 cw.write(alphabet[(x >> 12) & 0x3f]);
43 cw.write(alphabet[(x >> 6) & 0x3f]);
44 cw.write(alphabet[x & 0x3f]);
52 cw.write(alphabet[x >> 18]);
53 cw.write(alphabet[(x >> 12) & 0x3f]);
54 cw.write('=');
55 cw.write('=');
60 cw
[all...]
/external/quake/quake/src/QW/client/
H A Dsys_dosa.s38 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
42 cw: .long 0 label
74 fnstcw cw
75 movl cw,%eax
H A Dsys_wina.s58 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
62 cw: .long 0 label
94 fnstcw cw
95 movl cw,%eax
H A Dsys_wina.asm249 public ceil_cw, single_cw, full_cw, cw, pushed_cw
253 cw dd 0 define
276 fnstcw ds:word ptr[cw]
277 mov eax,ds:dword ptr[cw]
/external/quake/quake/src/WinQuake/
H A Dsys_dosa.s38 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
42 cw: .long 0 label
74 fnstcw cw
75 movl cw,%eax
H A Dsys_wina.s59 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
63 cw: .long 0 label
95 fnstcw cw
96 movl cw,%eax
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DClassLoaderLocalMap.java155 ClassWriter cw = new ClassWriter(0);
158 cw.visit(V1_2, ACC_PUBLIC + ACC_SUPER, holderClassName, null, "java/lang/Object", null);
161 cw.visitField(
170 mv = cw.visitMethod(ACC_STATIC, "<clinit>", "()V", null, null);
181 mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null);
189 cw.visitEnd();
190 return cw.toByteArray();
/external/kernel-headers/original/asm-x86/
H A Dsigcontext.h39 unsigned long cw; member in struct:_fpstate
/external/webp/src/dec/
H A Dbuffer.c144 const int cw = options->crop_width; local
148 if (x < 0 || y < 0 || cw <= 0 || ch <= 0 || x + cw > w || y + ch > h) {
151 w = cw;
/external/webkit/Source/WebCore/rendering/
H A DRenderImage.cpp507 int cw = containingBlockLogicalWidthForContent(); local
508 if (cw && logicalWidth > cw)
509 logicalWidth = cw;
547 int cw = containingBlockLogicalWidthForContent(); local
548 if (cw && logicalWidth && logicalWidth > cw)
549 logicalHeight = cw * logicalHeight / logicalWidth; // preserve aspect ratio
H A DRenderTable.cpp313 int cw = containingBlockLogicalWidthForContent(); local
314 bool shouldRenderAsSingleColumn = (width() > cw);
328 if (width() > cw)
329 setWidth(cw);
330 if (m_minPreferredLogicalWidth > cw)
331 m_minPreferredLogicalWidth = cw;
332 if (m_maxPreferredLogicalWidth > cw)
333 m_maxPreferredLogicalWidth = cw;
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_view_single.c74 Evas_Coord x, y, cw, ch; local
78 ewk_frame_contents_size_get(sd->main_frame, &cw, &ch);
79 if (w > cw)
80 w = cw;
375 Evas_Coord w, h, cw, ch; local
384 ewk_frame_contents_size_get(sd->main_frame, &cw, &ch);
385 if (w > cw)
386 w = cw;
487 Evas_Coord dx, dy, cw, ch; local
490 ewk_frame_contents_size_get(sd->main_frame, &cw,
[all...]
H A Dewk_private.h102 void ewk_view_scroll(Evas_Object *o, Evas_Coord dx, Evas_Coord dy, Evas_Coord sx, Evas_Coord sy, Evas_Coord sw, Evas_Coord sh, Evas_Coord cx, Evas_Coord cy, Evas_Coord cw, Evas_Coord ch, Eina_Bool main_frame);
/external/skia/bench/
H A Dbench_graph_svg.py542 def cw(w1): function in function:output_svg
547 return cw(x - global_min_x)
620 print 'width=%s height=%s' % (qa(cw(w)), qa(disp_h),),
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DVector2f.java749 public void rotateAroundOrigin(float angle, boolean cw) { argument
750 if (cw)
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DConnection.java478 CharArrayWriter cw = new CharArrayWriter();
487 cw.write(buff, 0, len);
492 return authenticateWithPublicKey(user, cw.toCharArray(), password);
H A DKnownHosts.java463 CharArrayWriter cw = new CharArrayWriter();
476 cw.write(buff, 0, len);
481 initialize(cw.toCharArray());
/external/opencv/ml/src/
H A Dmlsvm.cpp1369 const CvMat* cw = params.class_weights; local
1371 if( !CV_IS_MAT(cw) || cw->cols != 1 && cw->rows != 1 ||
1372 cw->rows + cw->cols - 1 != class_count ||
1373 CV_MAT_TYPE(cw->type) != CV_32FC1 && CV_MAT_TYPE(cw->type) != CV_64FC1 )
1377 CV_CALL( class_weights = cvCreateMat( cw->rows, cw
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dconfig_file.c834 static int valid_cw(int cw) argument
836 return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 ||
837 cw == 63 || cw == 127 || cw == 255 || cw
[all...]
/external/qemu/slirp/
H A Dtcp_input.c1189 register u_int cw = tp->snd_cwnd; local
1192 if (cw > tp->snd_ssthresh)
1193 incr = incr * incr / cw;
1194 tp->snd_cwnd = min(cw + incr, TCP_MAXWIN<<tp->snd_scale);
/external/qemu/slirp-android/
H A Dtcp_input.c1195 register u_int cw = tp->snd_cwnd; local
1198 if (cw > tp->snd_ssthresh)
1199 incr = incr * incr / cw;
1200 tp->snd_cwnd = min(cw + incr, TCP_MAXWIN<<tp->snd_scale);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dwmm.c90 ac->cw = wmm_ecw(acp->cwmin, acp->cwmax);
/external/wpa_supplicant_8/src/ap/
H A Dwmm.c90 ac->cw = wmm_ecw(acp->cwmin, acp->cwmax);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dwmm.c90 ac->cw = wmm_ecw(acp->cwmin, acp->cwmax);

Completed in 784 milliseconds

12