/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 | 246 const char **cpp, *str; local 249 for (cpp = abbrevs; *cpp; cpp++) { 250 if (ch == *cpp[0]) 253 if (*cpp && recurse < 10) { 254 str = _(*cpp) + 1;
|
/external/e2fsprogs/lib/support/ |
profile_helpers.c | 114 char **cpp; local 119 for (cpp = list->list; *cpp; cpp++) { 120 if (!strcmp(*cpp, str))
|
/external/e2fsprogs/misc/ |
logsave.c | 255 char *outfn, **cpp; local 290 for (cpp = argv; *cpp; cpp++) { 291 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::__anon27845
|
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;
|
/external/protobuf/src/google/protobuf/compiler/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 [all...] |
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 [all...] |
metadata_test.cc | 36 #include <google/protobuf/compiler/cpp/cpp_helpers.h> 37 #include <google/protobuf/compiler/cpp/cpp_generator.h> 52 namespace cpp { namespace in namespace:google::protobuf::compiler 239 } // namespace cpp
|
cpp_file.cc | 35 #include <google/protobuf/compiler/cpp/cpp_file.h> 43 #include <google/protobuf/compiler/cpp/cpp_enum.h> 44 #include <google/protobuf/compiler/cpp/cpp_service.h> 45 #include <google/protobuf/compiler/cpp/cpp_extension.h> 46 #include <google/protobuf/compiler/cpp/cpp_helpers.h> 47 #include <google/protobuf/compiler/cpp/cpp_message.h> 48 #include <google/protobuf/compiler/cpp/cpp_field.h> 56 namespace cpp { namespace in namespace:google::protobuf::compiler [all...] |
/hardware/intel/common/libva/va/x11/ |
va_dricommon.h | 56 unsigned int cpp; member in struct:dri_buffer::__anon40560
|
/system/tools/aidl/ |
ast_cpp.cpp | 30 namespace cpp { namespace in namespace:android::aidl 453 } // namespace cpp
|
generate_cpp_unittest.cpp | 39 namespace cpp { namespace in namespace:android::aidl 823 const char kOutputPath[] = "output.cpp"; 844 "aidl-cpp", kInputPath, kHeaderDir, kOutputPath 879 // Simulate issues closing the cpp file. 886 } // namespace cpp
|
/build/make/core/ |
definitions.mk | 273 ## Find all of the cpp files under the named directories. 276 ## SRC_FILES := $(call all-cpp-files-under,src tests) 279 define all-cpp-files-under 282 find -L $(1) -name "*$(or $(LOCAL_CPP_EXTENSION),.cpp)" -and -not -name ".*") \ 287 ## Find all of the cpp files from here. Meant to be used like: 288 ## SRC_FILES := $(call all-subdir-cpp-files) 291 define all-subdir-cpp-files 292 $(call all-cpp-files-under,.) 404 # css, *.cpp, DontWantThis.cpp) [all...] |
/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...] |
initimg-solaris.c | 142 HChar **cpp; local 192 for (cpp = origenv; *cpp; cpp++) 199 for (cpp = ret; *origenv; ) 200 *cpp++ = *origenv++; 201 *cpp = NULL; 203 vg_assert(envc == cpp - ret); 206 for (cpp = ret; *cpp; cpp++) 383 HChar **cpp; local [all...] |