/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
D | CharArrayWriterTest.java | 29 CharArrayWriter cw; field in CharArrayWriterTest 37 cw = new CharArrayWriter(90); in test_Constructor() 38 assertEquals("Created incorrect writer", 0, cw.size()); in test_Constructor() 45 cw = new CharArrayWriter(); in test_ConstructorI() 46 assertEquals("Created incorrect writer", 0, cw.size()); in test_ConstructorI() 53 cw.close(); in test_close() 60 cw.flush(); in test_flush() 67 cw.write("HelloWorld", 5, 5); in test_reset() 68 cw.reset(); in test_reset() 69 cw.write("HelloWorld", 0, 5); in test_reset() [all …]
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/ |
D | Base64.java | 22 CharArrayWriter cw = new CharArrayWriter((4 * content.length) / 3); in encode() local 41 cw.write(alphabet[x >> 18]); in encode() 42 cw.write(alphabet[(x >> 12) & 0x3f]); in encode() 43 cw.write(alphabet[(x >> 6) & 0x3f]); in encode() 44 cw.write(alphabet[x & 0x3f]); in encode() 52 cw.write(alphabet[x >> 18]); in encode() 53 cw.write(alphabet[(x >> 12) & 0x3f]); in encode() 54 cw.write('='); in encode() 55 cw.write('='); in encode() 60 cw.write(alphabet[x >> 18]); in encode() [all …]
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/ |
D | ClassLoaderLocalMap.java | 155 ClassWriter cw = new ClassWriter(0); in buildHolderByteCode() local 158 cw.visit(V1_2, ACC_PUBLIC + ACC_SUPER, holderClassName, null, "java/lang/Object", null); in buildHolderByteCode() 161 cw.visitField( in buildHolderByteCode() 170 mv = cw.visitMethod(ACC_STATIC, "<clinit>", "()V", null, null); in buildHolderByteCode() 181 mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null); in buildHolderByteCode() 189 cw.visitEnd(); in buildHolderByteCode() 190 return cw.toByteArray(); in buildHolderByteCode()
|
/external/quake/quake/src/QW/client/ |
D | sys_dosa.s | 38 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw 42 cw: .long 0 label 74 fnstcw cw 75 movl cw,%eax
|
D | sys_wina.s | 58 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw 62 cw: .long 0 label 94 fnstcw cw 95 movl cw,%eax
|
D | sys_wina.asm | 249 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/ |
D | sys_dosa.s | 38 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw 42 cw: .long 0 label 74 fnstcw cw 75 movl cw,%eax
|
D | sys_wina.s | 59 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw 63 cw: .long 0 label 95 fnstcw cw 96 movl cw,%eax
|
/external/webkit/Source/WebKit/efl/ewk/ |
D | ewk_view_single.c | 74 Evas_Coord x, y, cw, ch; in _ewk_view_single_smart_resize() local 78 ewk_frame_contents_size_get(sd->main_frame, &cw, &ch); in _ewk_view_single_smart_resize() 79 if (w > cw) in _ewk_view_single_smart_resize() 80 w = cw; in _ewk_view_single_smart_resize() 375 Evas_Coord w, h, cw, ch; in _ewk_view_single_smart_repaints_process() local 384 ewk_frame_contents_size_get(sd->main_frame, &cw, &ch); in _ewk_view_single_smart_repaints_process() 385 if (w > cw) in _ewk_view_single_smart_repaints_process() 386 w = cw; in _ewk_view_single_smart_repaints_process() 487 Evas_Coord dx, dy, cw, ch; in _ewk_view_single_smart_zoom_weak_set() local 490 ewk_frame_contents_size_get(sd->main_frame, &cw, &ch); in _ewk_view_single_smart_zoom_weak_set() [all …]
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderImage.cpp | 507 int cw = containingBlockLogicalWidthForContent(); in computeReplacedLogicalWidth() local 508 if (cw && logicalWidth > cw) in computeReplacedLogicalWidth() 509 logicalWidth = cw; in computeReplacedLogicalWidth() 547 int cw = containingBlockLogicalWidthForContent(); in computeReplacedLogicalHeight() local 548 if (cw && logicalWidth && logicalWidth > cw) in computeReplacedLogicalHeight() 549 logicalHeight = cw * logicalHeight / logicalWidth; // preserve aspect ratio in computeReplacedLogicalHeight()
|
D | RenderTable.cpp | 313 int cw = containingBlockLogicalWidthForContent(); in layout() local 314 bool shouldRenderAsSingleColumn = (width() > cw); in layout() 328 if (width() > cw) in layout() 329 setWidth(cw); in layout() 330 if (m_minPreferredLogicalWidth > cw) in layout() 331 m_minPreferredLogicalWidth = cw; in layout() 332 if (m_maxPreferredLogicalWidth > cw) in layout() 333 m_maxPreferredLogicalWidth = cw; in layout()
|
/external/webp/src/dec/ |
D | buffer.c | 144 const int cw = options->crop_width; in WebPAllocateDecBuffer() local 148 if (x < 0 || y < 0 || cw <= 0 || ch <= 0 || x + cw > w || y + ch > h) { in WebPAllocateDecBuffer() 151 w = cw; in WebPAllocateDecBuffer()
|
/external/llvm/test/CodeGen/ARM/ |
D | carry.ll | 32 %cw = add i64 %aw, %bw 34 %ch = lshr i64 %cw, 32
|
/external/kernel-headers/original/asm-x86/ |
D | sigcontext.h | 39 unsigned long cw; member
|
/external/skia/bench/ |
D | bench_graph_svg.py | 542 def cw(w1): function 547 return cw(x - global_min_x) 620 print 'width=%s height=%s' % (qa(cw(w)), qa(disp_h),),
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/ |
D | es-ES_zl0_kdt_lfz5.pkb | 67 _]����^$82cw�`5�8��x�]"�1��nc!�l�Jd�|:h `6h\�9�^֠����O�I9=�[�9��8l���v�
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
D | Connection.java | 478 CharArrayWriter cw = new CharArrayWriter(); in authenticateWithPublicKey() local 487 cw.write(buff, 0, len); in authenticateWithPublicKey() 492 return authenticateWithPublicKey(user, cw.toCharArray(), password); in authenticateWithPublicKey()
|
D | KnownHosts.java | 463 CharArrayWriter cw = new CharArrayWriter(); in initialize() local 476 cw.write(buff, 0, len); in initialize() 481 initialize(cw.toCharArray()); in initialize()
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Vector2f.java | 749 public void rotateAroundOrigin(float angle, boolean cw) { in rotateAroundOrigin() argument 750 if (cw) in rotateAroundOrigin()
|
/external/opencv/ml/src/ |
D | mlsvm.cpp | 1369 const CvMat* cw = params.class_weights; in do_train() local 1371 if( !CV_IS_MAT(cw) || cw->cols != 1 && cw->rows != 1 || in do_train() 1372 cw->rows + cw->cols - 1 != class_count || in do_train() 1373 CV_MAT_TYPE(cw->type) != CV_32FC1 && CV_MAT_TYPE(cw->type) != CV_64FC1 ) in do_train() 1377 CV_CALL( class_weights = cvCreateMat( cw->rows, cw->cols, CV_64F )); in do_train() 1378 CV_CALL( cvConvert( cw, class_weights )); in do_train()
|
/external/wpa_supplicant_8/hostapd/ |
D | config_file.c | 834 static int valid_cw(int cw) in valid_cw() argument 836 return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 || in valid_cw() 837 cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023); in valid_cw()
|
/external/mksh/src/ |
D | expr.c | 684 int cw; in utf_mbswidth() local 691 ((cw = utf_wcwidth(wc)) == -1)) { in utf_mbswidth() 696 width += cw; in utf_mbswidth()
|
D | tree.c | 664 union mksh_ccphack cw; in tfree() local 666 cw.ro = t->args; in tfree() 667 for (w = cw.rw; *w != NULL; w++) in tfree()
|
/external/qemu/slirp/ |
D | tcp_input.c | 1189 register u_int cw = tp->snd_cwnd; in tcp_input() local 1192 if (cw > tp->snd_ssthresh) in tcp_input() 1193 incr = incr * incr / cw; in tcp_input() 1194 tp->snd_cwnd = min(cw + incr, TCP_MAXWIN<<tp->snd_scale); in tcp_input()
|
/external/qemu/slirp-android/ |
D | tcp_input.c | 1195 register u_int cw = tp->snd_cwnd; in tcp_input() local 1198 if (cw > tp->snd_ssthresh) in tcp_input() 1199 incr = incr * incr / cw; in tcp_input() 1200 tp->snd_cwnd = min(cw + incr, TCP_MAXWIN<<tp->snd_scale); in tcp_input()
|