/external/openfst/src/include/fst/script/ |
info-impl.h | 19 // Class to compute various information about FSTs, helper class for fstinfo.cc 40 // Compute various information about FSTs, helper class for fstinfo.cc. 112 vector<StateId> cc; local 113 CcVisitor<Arc> cc_visitor(&cc); 128 for (StateId s = 0; s < cc.size(); ++s) { 129 if (cc[s] >= ncc_) 130 ncc_ = cc[s] + 1;
|
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_surface.c | 691 Uint32 cc = (Uint32)c << 16 | c; local 698 SDL_memset4(pixels, cc, n >> 1);
|
/external/skia/src/images/ |
SkScaledBitmapSampler.cpp | 369 SkPMColor cc = A32_MASK_IN_PLACE; local 372 cc &= c; 376 return cc != A32_MASK_IN_PLACE; 385 SkPMColor cc = A32_MASK_IN_PLACE; local 388 cc &= c; 394 return cc != A32_MASK_IN_PLACE; 452 SkPMColor cc = A32_MASK_IN_PLACE; local 455 cc &= c; 459 return cc != A32_MASK_IN_PLACE; 467 SkPMColor cc = A32_MASK_IN_PLACE local 484 SkPMColor cc = A32_MASK_IN_PLACE; local 501 SkPMColor cc = A32_MASK_IN_PLACE; local [all...] |
/external/wpa_supplicant_8/src/crypto/ |
crypto_cryptoapi.c | 662 PCCERT_CONTEXT cc; local 668 cc = CertCreateCertificateContext(X509_ASN_ENCODING | 670 if (!cc) { 680 CertFreeCertificateContext(cc); 686 &cc->pCertInfo->SubjectPublicKeyInfo, 691 CertFreeCertificateContext(cc); 695 CertFreeCertificateContext(cc);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
ratectrl.c | 218 CODING_CONTEXT *const cc = & cpi->coding_context; local 226 cc->frames_since_key = cpi->frames_since_key; 227 cc->filter_level = cpi->common.filter_level; 228 cc->frames_till_gf_update_due = cpi->frames_till_gf_update_due; 229 cc->frames_since_golden = cpi->frames_since_golden; 231 vp8_copy(cc->mvc, cpi->common.fc.mvc); 232 vp8_copy(cc->mvcosts, cpi->rd_costs.mvcosts); 234 vp8_copy(cc->ymode_prob, cpi->common.fc.ymode_prob); 235 vp8_copy(cc->uv_mode_prob, cpi->common.fc.uv_mode_prob); 237 vp8_copy(cc->ymode_count, cpi->mb.ymode_count) 257 CODING_CONTEXT *const cc = & cpi->coding_context; local [all...] |
/packages/apps/Browser/src/com/android/browser/ |
DataController.java | 88 CallbackContainer cc = (CallbackContainer) msg.obj; 91 OnQueryUrlIsBookmark cb = (OnQueryUrlIsBookmark) cc.replyTo; 92 String url = (String) cc.args[0]; 93 boolean isBookmark = (Boolean) cc.args[1]; 288 CallbackContainer cc = new CallbackContainer(); local 289 cc.replyTo = replyTo; 290 cc.args = new Object[] { url, isBookmark }; 291 mCbHandler.obtainMessage(QUERY_URL_IS_BOOKMARK, cc).sendToTarget();
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
SmtpSender.java | 191 Address[] cc = Address.fromHeader(message.mCc); local 199 for (Address address : cc) {
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
RobustnessTest.java | 221 CameraCharacteristics cc = mCameraManager.getCameraCharacteristics(id); local 223 MaxOutputSizes maxSizes = new MaxOutputSizes(cc, id); 225 final StaticMetadata staticInfo = new StaticMetadata(cc); 289 public MaxOutputSizes(CameraCharacteristics cc, String cameraId) { 291 cc.get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP);
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/ |
KeyStore_Impl1Test.java | 480 Certificate[] cc; local 500 cc = ((KeyStore.PrivateKeyEntry) en).getCertificateChain(); 501 assertEquals("Incorrect CertificateChain", cc.length, 503 for (int t = 0; t < cc.length; t++) { 504 assertEquals("Incorrect CertificateChain", cc[t], certs[t]); 517 cc = kss[i].getCertificateChain(aliases[j]); 518 assertEquals("Incorrect CertificateChain", cc.length, 520 for (int t = 0; t < cc.length; t++) { 521 assertEquals("Incorrect CertificateChain", cc[t], certs[t]); 798 Certificate[] cc = kss[i].getCertificateChain(aliases[j]); local [all...] |
/external/bluetooth/bluedroid/stack/smp/ |
aes.c | 500 uint_8t cc, rc, hi; local 523 for( cc = keylen, rc = 1; cc < hi; cc += 4 ) 526 t0 = ctx->ksch[cc - 4]; 527 t1 = ctx->ksch[cc - 3]; 528 t2 = ctx->ksch[cc - 2]; 529 t3 = ctx->ksch[cc - 1]; 530 if( cc % keylen == 0 ) 539 else if( keylen > 24 && cc % keylen == 16 665 { uint_8t cc; local 719 { uint_8t cc; local 772 { uint_8t cc; local 852 { uint_8t cc; local [all...] |
/external/bzip2/ |
blocksort.c | 220 Int32 H, i, j, k, l, r, cc, cc1; local 300 cc = -1; 303 if (cc != cc1) { SET_BH(i); cc = cc1; };
|
/external/ceres-solver/include/ceres/ |
rotation.h | 495 T cc = c * c; local 499 R(0, 0) = aa + bb - cc - dd; R(0, 1) = T(2) * (bc - ad); R(0, 2) = T(2) * (ac + bd); // NOLINT 500 R(1, 0) = T(2) * (ad + bc); R(1, 1) = aa - bb + cc - dd; R(1, 2) = T(2) * (cd - ab); // NOLINT 501 R(2, 0) = T(2) * (bd - ac); R(2, 1) = T(2) * (ab + cd); R(2, 2) = aa - bb - cc + dd; // NOLINT
|
/external/chromium_org/cc/animation/ |
layer_animation_controller.cc | 5 #include "cc/animation/layer_animation_controller.h" 10 #include "cc/animation/animation.h" 11 #include "cc/animation/animation_delegate.h" 12 #include "cc/animation/animation_registrar.h" 13 #include "cc/animation/keyframed_animation_curve.h" 14 #include "cc/animation/layer_animation_value_observer.h" 15 #include "cc/animation/layer_animation_value_provider.h" 16 #include "cc/animation/scroll_offset_animation_curve.h" 17 #include "cc/base/scoped_ptr_algorithm.h" 18 #include "cc/output/filter_operations.h 22 namespace cc { namespace [all...] |
/external/chromium_org/cc/debug/ |
debug_colors.cc | 7 #include "cc/debug/debug_colors.h" 9 #include "cc/trees/layer_tree_impl.h" 11 namespace cc { namespace 321 } // namespace cc
|
/external/chromium_org/cc/layers/ |
heads_up_display_layer_impl.cc | 5 #include "cc/layers/heads_up_display_layer_impl.h" 13 #include "cc/debug/debug_colors.h" 14 #include "cc/debug/frame_rate_counter.h" 15 #include "cc/debug/paint_time_counter.h" 16 #include "cc/output/begin_frame_args.h" 17 #include "cc/output/renderer.h" 18 #include "cc/quads/texture_draw_quad.h" 19 #include "cc/resources/memory_history.h" 20 #include "cc/trees/layer_tree_impl.h" 31 namespace cc { namespace [all...] |
layer_unittest.cc | 5 #include "cc/layers/layer.h" 7 #include "cc/animation/keyframed_animation_curve.h" 8 #include "cc/base/math_util.h" 9 #include "cc/layers/layer_impl.h" 10 #include "cc/resources/layer_painter.h" 11 #include "cc/test/animation_test_common.h" 12 #include "cc/test/fake_impl_proxy.h" 13 #include "cc/test/fake_layer_tree_host_client.h" 14 #include "cc/test/fake_layer_tree_host_impl.h" 15 #include "cc/test/geometry_test_utils.h 37 namespace cc { namespace [all...] |
scrollbar_layer_unittest.cc | 6 #include "cc/animation/scrollbar_animation_controller.h" 7 #include "cc/layers/append_quads_data.h" 8 #include "cc/layers/painted_scrollbar_layer.h" 9 #include "cc/layers/painted_scrollbar_layer_impl.h" 10 #include "cc/layers/scrollbar_layer_interface.h" 11 #include "cc/layers/solid_color_scrollbar_layer.h" 12 #include "cc/layers/solid_color_scrollbar_layer_impl.h" 13 #include "cc/quads/solid_color_draw_quad.h" 14 #include "cc/resources/resource_update_queue.h" 15 #include "cc/test/fake_impl_proxy.h 33 namespace cc { namespace [all...] |
texture_layer_unittest.cc | 5 #include "cc/layers/texture_layer.h" 15 #include "cc/layers/solid_color_layer.h" 16 #include "cc/layers/texture_layer_client.h" 17 #include "cc/layers/texture_layer_impl.h" 18 #include "cc/output/compositor_frame_ack.h" 19 #include "cc/output/context_provider.h" 20 #include "cc/resources/returned_resource.h" 21 #include "cc/test/fake_impl_proxy.h" 22 #include "cc/test/fake_layer_tree_host_client.h" 23 #include "cc/test/fake_layer_tree_host_impl.h 42 namespace cc { namespace [all...] |
tiled_layer.cc | 5 #include "cc/layers/tiled_layer.h" 13 #include "cc/base/simple_enclosed_region.h" 14 #include "cc/layers/layer_impl.h" 15 #include "cc/layers/tiled_layer_impl.h" 16 #include "cc/resources/layer_updater.h" 17 #include "cc/resources/prioritized_resource.h" 18 #include "cc/resources/priority_calculator.h" 19 #include "cc/trees/layer_tree_host.h" 20 #include "cc/trees/occlusion_tracker.h" 24 namespace cc { namespace [all...] |
tiled_layer_unittest.cc | 5 #include "cc/layers/tiled_layer.h" 11 #include "cc/resources/bitmap_content_layer_updater.h" 12 #include "cc/resources/layer_painter.h" 13 #include "cc/resources/prioritized_resource_manager.h" 14 #include "cc/resources/resource_update_controller.h" 15 #include "cc/test/animation_test_common.h" 16 #include "cc/test/fake_layer_tree_host_client.h" 17 #include "cc/test/fake_layer_tree_host_impl.h" 18 #include "cc/test/fake_output_surface.h" 19 #include "cc/test/fake_output_surface_client.h 31 namespace cc { namespace [all...] |
/external/chromium_org/cc/output/ |
gl_renderer.h | 9 #include "cc/base/cc_export.h" 10 #include "cc/base/scoped_ptr_deque.h" 11 #include "cc/base/scoped_ptr_vector.h" 12 #include "cc/output/direct_renderer.h" 13 #include "cc/output/gl_renderer_draw_cache.h" 14 #include "cc/output/program_binding.h" 15 #include "cc/output/renderer.h" 16 #include "cc/quads/checkerboard_draw_quad.h" 17 #include "cc/quads/debug_border_draw_quad.h" 18 #include "cc/quads/io_surface_draw_quad.h 33 namespace cc { namespace [all...] |
gl_renderer_unittest.cc | 5 #include "cc/output/gl_renderer.h" 9 #include "cc/base/math_util.h" 10 #include "cc/output/compositor_frame_metadata.h" 11 #include "cc/resources/resource_provider.h" 12 #include "cc/test/fake_impl_proxy.h" 13 #include "cc/test/fake_layer_tree_host_impl.h" 14 #include "cc/test/fake_output_surface.h" 15 #include "cc/test/fake_output_surface_client.h" 16 #include "cc/test/fake_renderer_client.h" 17 #include "cc/test/pixel_test.h 43 namespace cc { namespace [all...] |
shader.cc | 5 #include "cc/output/shader.h" 11 #include "cc/output/gl_renderer.h" // For the GLC() macro. 21 namespace cc { namespace [all...] |
shader.h | 11 #include "cc/base/cc_export.h" 24 namespace cc { namespace 732 } // namespace cc
|
software_renderer.cc | 5 #include "cc/output/software_renderer.h" 8 #include "cc/base/math_util.h" 9 #include "cc/output/compositor_frame.h" 10 #include "cc/output/compositor_frame_ack.h" 11 #include "cc/output/compositor_frame_metadata.h" 12 #include "cc/output/copy_output_request.h" 13 #include "cc/output/output_surface.h" 14 #include "cc/output/render_surface_filters.h" 15 #include "cc/output/software_output_device.h" 16 #include "cc/quads/checkerboard_draw_quad.h 34 namespace cc { namespace [all...] |