HomeSort by relevance Sort by last modified time
    Searched defs:cpp (Results 51 - 75 of 132) sorted by null

1 23 4 5 6

  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_bootstrap_unittest.cc 47 #include <google/protobuf/compiler/cpp/cpp_generator.h>
63 namespace cpp { namespace in namespace:google::protobuf::compiler
155 } // namespace cpp
cpp_enum_field.cc 35 #include <google/protobuf/compiler/cpp/cpp_enum_field.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
44 namespace cpp { namespace in namespace:google::protobuf::compiler
428 } // namespace cpp
cpp_file.cc 35 #include <google/protobuf/compiler/cpp/cpp_file.h>
39 #include <google/protobuf/compiler/cpp/cpp_enum.h>
40 #include <google/protobuf/compiler/cpp/cpp_service.h>
41 #include <google/protobuf/compiler/cpp/cpp_extension.h>
42 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
43 #include <google/protobuf/compiler/cpp/cpp_message.h>
44 #include <google/protobuf/compiler/cpp/cpp_field.h>
52 namespace cpp { namespace in namespace:google::protobuf::compiler
662 } // namespace cpp
cpp_message_field.cc 35 #include <google/protobuf/compiler/cpp/cpp_message_field.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
43 namespace cpp { namespace in namespace:google::protobuf::compiler
372 } // namespace cpp
cpp_primitive_field.cc 35 #include <google/protobuf/compiler/cpp/cpp_primitive_field.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
44 namespace cpp { namespace in namespace:google::protobuf::compiler
448 } // namespace cpp
cpp_service.cc 35 #include <google/protobuf/compiler/cpp/cpp_service.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
43 namespace cpp { namespace in namespace:google::protobuf::compiler
331 } // namespace cpp
cpp_string_field.cc 35 #include <google/protobuf/compiler/cpp/cpp_string_field.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
44 namespace cpp { namespace in namespace:google::protobuf::compiler
639 } // namespace cpp
  /system/tools/aidl/
ast_cpp_unittest.cpp 30 namespace cpp { namespace in namespace:android::aidl
243 } // namespace cpp
type_cpp.h 31 namespace cpp { namespace in namespace:android::aidl
141 } // namespace cpp
ast_cpp.cpp 30 namespace cpp { namespace in namespace:android::aidl
439 } // namespace cpp
generate_cpp_unittest.cpp 39 namespace cpp { namespace in namespace:android::aidl
757 const char kOutputPath[] = "output.cpp";
778 "aidl-cpp", kInputPath, kHeaderDir, kOutputPath
813 // Simulate issues closing the cpp file.
820 } // namespace cpp
  /bionic/libc/kernel/tools/
kernel.py 7 import sys, cpp, re, os.path, string, time namespace
133 list = cpp.BlockParser().parseFile(path)
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
PKIXParameters_ImplTest.java 67 CertPathParameters cpp = new PKIXParameters(ks); local
68 assertTrue(cpp instanceof PKIXParameters);
89 PKIXParameters cpp = new PKIXParameters(ks); local
90 assertEquals("size", 1, cpp.getTrustAnchors().size());
  /external/clang/test/SemaCXX/
const-cast.cpp 10 typedef cp *cpp; typedef
11 typedef cpp *cppp;
  /external/drm_gralloc/
gralloc_drm_nouveau.c 68 int width, int height, int cpp, int usage, int *pitch)
97 *pitch = ALIGN(width * cpp, align);
129 tile_flags = (scanout && cpp != 2) ? 0x7a00 : 0x7000;
156 if (cpp == 4)
158 else if (cpp == 2)
179 int cpp; local
181 cpp = gralloc_drm_get_bpp(handle->format);
182 if (!cpp) {
207 cpp, handle->usage, &pitch);
210 handle->width, handle->height, cpp);
    [all...]
gralloc_drm_radeon.c 192 int cpp; local
194 cpp = gralloc_drm_get_bpp(handle->format);
195 if (!cpp) {
210 radeon_get_pitch_align(info, cpp, tiling));
220 pitch = aligned_width * cpp;
222 base_align = radeon_get_base_align(info, cpp, tiling);
227 handle->width, handle->height, cpp);
  /external/e2fsprogs/e2fsck/
message.c 244 const char **cpp, *str; local
247 for (cpp = abbrevs; *cpp; cpp++) {
248 if (ch == *cpp[0])
251 if (*cpp && recurse < 10) {
252 str = _(*cpp) + 1;
profile_helpers.c 112 char **cpp; local
117 for (cpp = list->list; *cpp; cpp++) {
118 if (!strcmp(*cpp, str))
  /external/e2fsprogs/misc/
logsave.c 254 char *outfn, **cpp; local
289 for (cpp = argv; *cpp; cpp++) {
290 send_output(*cpp, 0, send_flag);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_transfer.c 40 rect->cpp = util_format_get_blocksize(res->format);
60 const int cpp = dst->cpp; local
67 assert(dst->cpp == src->cpp);
78 PUSH_DATA (push, src->width * cpp);
83 src_ofst += src->y * src->pitch + src->x * cpp;
95 PUSH_DATA (push, dst->width * cpp);
100 dst_ofst += dst->y * dst->pitch + dst->x * cpp;
121 PUSH_DATA (push, (sy << 16) | (src->x * cpp));
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_regions.c 169 GLuint cpp,
179 region->cpp = cpp;
195 GLuint cpp, GLuint width, GLuint height,
207 width, height, cpp,
212 region = intel_region_alloc_internal(screen, cpp, width, height,
213 aligned_pitch / cpp, tiling, buffer);
240 GLuint cpp,
253 region->cpp != cpp || region->pitch != pitch)
410 int cpp = region->cpp; local
442 int cpp = region->cpp; local
    [all...]
intel_regions.h 63 GLuint cpp; /**< bytes per pixel */ member in struct:intel_region
82 GLuint cpp, GLuint width,
88 GLuint cpp,
127 GLuint cpp,
158 int cpp; member in struct:intel_image_format::__anon19727
  /external/mesa3d/src/mesa/swrast/
s_renderbuffer.c 189 int cpp = _mesa_get_format_bytes(rb->Format); local
190 int stride = rb->Width * cpp;
198 map += x * cpp;
  /hardware/intel/common/libva/va/x11/
va_dricommon.h 56 unsigned int cpp; member in struct:dri_buffer::__anon30027
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_transfer.c 24 const int cpp = dst->cpp; local
32 assert(dst->cpp == src->cpp);
42 PUSH_DATA (push, src->width * cpp);
47 src_ofst += src->y * src->pitch + src->x * cpp;
50 PUSH_DATA (push, src->width * cpp);
58 PUSH_DATA (push, dst->width * cpp);
63 dst_ofst += dst->y * dst->pitch + dst->x * cpp;
66 PUSH_DATA (push, dst->width * cpp);
122 const int cpp = dst->cpp; local
    [all...]

Completed in 1551 milliseconds

1 23 4 5 6