/external/protobuf/src/google/protobuf/compiler/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
|
cpp_helpers.cc | 40 #include <google/protobuf/compiler/cpp/cpp_helpers.h> 50 namespace cpp { namespace in namespace:google::protobuf::compiler 491 } // 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 | 8 typedef cp *cpp; typedef 9 typedef cpp *cppp;
|
cstyle-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::__anon17041
|
intel_blit.c | 70 br13_for_cpp(int cpp) 72 switch (cpp) { 92 GLuint cpp, 147 src_pitch *= cpp; 148 dst_pitch *= cpp; 159 if (cpp > 4) { 160 assert(cpp % 4 == 0); 161 dst_x *= cpp / 4; 162 dst_x2 *= cpp / 4; 163 src_x *= cpp / 4 272 int pitch, cpp; local 537 int pitch, cpp; local [all...] |
intel_mipmap_tree.h | 216 GLuint cpp; member in struct:intel_mipmap_tree
|
/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::__anon24018
|
/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...] |
/external/mesa3d/src/gallium/state_trackers/dri/sw/ |
drisw.c | 256 int cpp = util_format_get_blocksize(res->format); local 270 ximage_stride = w * cpp;
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_screen.h | 60 int cpp; member in struct:radeon_screen 117 int cpp; member in struct:__DRIimageRec
|
/external/valgrind/coregrind/m_initimg/ |
initimg-darwin.c | 130 HChar** cpp; local 165 for (cpp = origenv; cpp && *cpp; cpp++) 173 for (cpp = ret; *origenv; ) 174 *cpp++ = *origenv++; 175 *cpp = NULL; 177 vg_assert(envc == (cpp - ret)); 180 for (cpp = ret; cpp && *cpp; cpp++) 317 HChar **cpp; local [all...] |
/bionic/libc/dns/nameser/ |
ns_name.c | 529 const u_char **cpp, **lpp, *eob, *msg; local 536 lpp = cpp = NULL; 539 for (cpp = dnptrs; *cpp != NULL; cpp++) 541 lpp = cpp; /* end of list to search */ 586 if (lastdnptr != NULL && cpp < lastdnptr - 1 && 588 *cpp++ = dstp; 589 *cpp = NULL; 938 const u_char * const *cpp; local [all...] |