HomeSort by relevance Sort by last modified time
    Searched defs:cpp (Results 76 - 100 of 124) sorted by null

1 2 34 5

  /system/tools/aidl/
type_cpp.cpp 41 namespace cpp { namespace in namespace:android::aidl
552 LOG(ERROR) << "aidl-cpp does not yet support List<" << type_name << ">";
597 } // namespace cpp
ast_cpp.h 34 namespace cpp { namespace in namespace:android::aidl
416 } // namespace cpp
generate_cpp.cpp 42 namespace cpp { namespace in namespace:android::aidl
856 } // namespace cpp
  /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...]
  /external/clang/test/SemaCXX/
cstyle-cast.cpp 10 typedef cp *cpp; typedef
11 typedef cpp *cppp;
functional-cast.cpp 40 typedef cp *cpp; typedef
41 typedef cpp *cppp;
  /external/e2fsprogs/misc/
filefrag.c 524 char **cpp; local
591 for (cpp = argv + optind; *cpp != '\0'; cpp++) {
592 int rc2 = frag_report(*cpp);
mke2fs.c 1176 char **cpp; local
1178 for (cpp = list; *cpp; cpp++) {
1179 printf("'%s'", *cpp);
1180 if (cpp[1])
1352 char **cpp; local
1364 char **cpp; local
1376 char **cpp; local
1387 char **cpp; local
1454 char *tmp, **cpp; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_fbo.c 166 uint32_t pitch = w * rrb->cpp;
180 uint32_t dst_offset = pix_y * rrb->map_pitch + pix_x * rrb->cpp;
204 uint32_t pitch = w * rrb->cpp;
219 uint32_t dst_offset = pix_y * rrb->map_pitch + pix_x * rrb->cpp;
259 ok = rmesa->vtbl.check_blit(rb->Format, rrb->pitch / rrb->cpp);
282 rb->Format, rrb->pitch / rrb->cpp,
286 rb->Format, rrb->map_pitch / rrb->cpp,
340 map += x * rrb->cpp;
370 uint32_t src_offset = pix_y * rrb->map_pitch + pix_x * rrb->cpp;
403 uint32_t src_offset = pix_y * rrb->map_pitch + pix_x * rrb->cpp;
472 int cpp; local
    [all...]
radeon_common_context.h 86 unsigned int cpp; member in struct:radeon_renderbuffer
319 static INLINE GLuint radeonPackColor(GLuint cpp,
323 switch (cpp) {
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 40 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
51 namespace cpp { namespace in namespace:google::protobuf::compiler
701 } // namespace cpp
cpp_unittest.cc 47 #include <google/protobuf/compiler/cpp/cpp_unittest.h>
65 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
66 #include <google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h>
86 namespace cpp { namespace in namespace:google::protobuf::compiler
2090 namespace cpp { namespace in namespace:google::protobuf::compiler
    [all...]
cpp_message.cc 44 #include <google/protobuf/compiler/cpp/cpp_message.h>
45 #include <google/protobuf/compiler/cpp/cpp_field.h>
46 #include <google/protobuf/compiler/cpp/cpp_enum.h>
47 #include <google/protobuf/compiler/cpp/cpp_extension.h>
48 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
59 namespace cpp { namespace in namespace:google::protobuf::compiler
    [all...]
  /external/valgrind/coregrind/m_initimg/
initimg-linux.c 140 HChar** cpp; local
176 for (cpp = origenv; cpp && *cpp; cpp++) {
178 if (debug) VG_(printf)("XXXXXXXXX: BEFORE %s\n", *cpp);
186 for (cpp = ret; *origenv; ) {
188 *cpp++ = *origenv++;
190 *cpp = NULL;
192 vg_assert(envc == (cpp - ret))
396 HChar **cpp; local
    [all...]
  /external/curl/packages/OS400/
ccsidcurl.c 612 char * * cpp; local
631 cpp = (char * *) paramp;
633 if(*cpp) {
634 *cpp = dynconvert(ccsid, *cpp, -1, ASCII_CCSID);
636 if(!*cpp)
  /external/dnsmasq/src/
rfc1035.c 663 struct crec *cpp = NULL; local
788 if (newc && cpp)
790 cpp->addr.cname.cache = newc;
791 cpp->addr.cname.uid = newc->uid;
794 cpp = newc;
818 if (newc && cpp)
820 cpp->addr.cname.cache = newc;
821 cpp->addr.cname.uid = newc->uid;
823 cpp = NULL;
842 if (ttl || cpp)
    [all...]
  /external/e2fsprogs/e2fsck/
journal.c 1033 const char * const * cpp; local
1095 for (cpp = journal_names; *cpp; cpp++) {
1096 retval = ext2fs_lookup(fs, EXT2_ROOT_INO, *cpp,
1097 strlen(*cpp), 0, &ino);
1101 if (*cpp == 0)
1109 pctx.str = *cpp;
1118 if ((retval = ext2fs_unlink(fs, EXT2_ROOT_INO, *cpp, ino, 0)) != 0)
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_screen.c 154 irb->mt->region->cpp,
302 int cpp; local
306 cpp = 1;
308 cpp = _mesa_get_format_bytes(image->format);
310 cpp, width, height,
387 int cpp; local
397 cpp = _mesa_get_format_bytes(image->format);
399 intel_region_alloc(intelScreen, tiling, cpp, width, height, true);
413 *value = image->region->pitch * image->region->cpp;
522 int width, height, offset, stride, dri_format, cpp, index, pitch local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/swrast/
swrast.c 389 int cpp = _mesa_get_format_bytes(rb->Format); local
390 int stride = rb->Width * cpp;
402 stride = w * cpp;
422 map += (GLsizei)x * cpp;
  /external/valgrind/coregrind/
m_libcproc.c 120 HChar **cpp; local
127 for (cpp = env; cpp && *cpp; cpp++) {
128 if (VG_(strncmp)(varname, *cpp, len) == 0 && (*cpp)[len] == '=') {
129 *cpp = valstr;
142 Int envlen = (cpp-env) + 2;
145 for (cpp = newenv; *env;
    [all...]
  /external/flatbuffers/src/
idl_gen_cpp.cpp 31 namespace cpp { namespace in namespace:flatbuffers
    [all...]
  /external/e2fsprogs/lib/support/
profile.c 310 char **cpp, *cp, **array = 0; local
329 for (cpp = array; (cp = *cpp); cpp++) {
1342 const char *const *cpp; local
1394 for (cpp = iter->names; cpp[iter->done_idx]; cpp++) {
1396 if (!strcmp(p->name, *cpp) && !p->value)
1412 iter->name = *cpp;
1755 char **values, **cpp; local
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-generic.c 3066 HChar **cpp; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/GL/internal/
dri_interface.h 658 unsigned int cpp; member in struct:__DRIbufferRec
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/drm/
i830_drm.h 172 unsigned int cpp; member in struct:_drm_i830_init

Completed in 1514 milliseconds

1 2 34 5