HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 601 - 625 of 3477) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
tri.c 8 static struct graw_info info; variable in typeref:struct:graw_info
52 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
53 info.ctx->bind_vertex_elements_state(info.ctx, handle);
58 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
64 info.ctx->set_vertex_buffers(info.ctx, 1, &vbuf);
81 handle = graw_parse_vertex_shader(info.ctx, text);
82 info.ctx->bind_vs_state(info.ctx, handle)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
appledri.c 97 XExtDisplayInfo *info = find_display(dpy); local
100 AppleDRICheckExtension(dpy, info, False);
102 switch ((event->u.u.type & 0x7f) - info->codes->first_event) {
133 XExtDisplayInfo *info = find_display(dpy); local
136 if (XextHasExtension(info)) {
137 *event_basep = info->codes->first_event;
138 *error_basep = info->codes->first_error;
155 XExtDisplayInfo *info = find_display(dpy); local
160 AppleDRICheckExtension(dpy, info, False);
164 req->reqType = info->codes->major_opcode
187 XExtDisplayInfo *info = find_display(dpy); local
218 XExtDisplayInfo *info = find_display(dpy); local
253 XExtDisplayInfo *info = find_display(dpy); local
289 XExtDisplayInfo *info = find_display(dpy); local
312 XExtDisplayInfo *info = find_display(dpy); local
359 XExtDisplayInfo *info = find_display(dpy); local
381 XExtDisplayInfo *info = find_display(dpy); local
436 XExtDisplayInfo *info = find_display(dpy); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
xmlconfig.h 63 * \li One in <driver>Screen caching option info and the default values
66 driOptionInfo *info; member in struct:driOptionCache
84 /** \brief Parse XML option info from configOptions
88 * \param info pointer to a driOptionCache that will store the option info
96 void driParseOptionInfo (driOptionCache *info,
98 /** \brief Initialize option cache from info and parse configuration files
102 void driParseConfigFiles (driOptionCache *cache, const driOptionCache *info,
104 /** \brief Destroy option info
107 void driDestroyOptionInfo (driOptionCache *info);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_cpal.c 70 get_palette_entry(const struct cpal_format_info *info, const GLubyte *palette,
73 memcpy(pixel, palette + info->size * index, info->size);
74 return info->size;
82 paletted_to_color(const struct cpal_format_info *info, const GLubyte *palette,
88 if (info->palette_size == 16) {
95 pix += get_palette_entry(info, palette, (ind[i] >> 4) & 0xf, pix);
96 pix += get_palette_entry(info, palette, ind[i] & 0xf, pix);
99 get_palette_entry(info, palette, (ind[i] >> 4) & 0xf, pix);
106 pix += get_palette_entry(info, palette, ind[i], pix)
114 const struct cpal_format_info *info; local
149 const struct cpal_format_info *info; local
171 const struct cpal_format_info *info; local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
plresolv.h 99 PR_EXTERN(void) PL_ResolveInfo(PLResoveInfo *info); variable
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
test_fft32.c 31 struct TestInfo info; local
44 info.real_only_ = options.real_only_;
45 info.max_fft_order_ = options.max_fft_order_;
46 info.min_fft_order_ = options.min_fft_order_;
47 info.do_forward_tests_ = options.do_forward_tests_;
48 info.do_inverse_tests_ = options.do_inverse_tests_;
49 info.known_failures_ = 0;
54 info.forward_threshold_ = 107.33;
55 info.inverse_threshold_ = 79.02;
62 RunAllTests(&info);
    [all...]
test_float_fft.c 30 extern void SetThresholds(struct TestInfo *info);
41 const struct TestInfo* info);
45 struct TestInfo info; local
57 info.real_only_ = options.real_only_;
58 info.max_fft_order_ = options.max_fft_order_;
59 info.min_fft_order_ = options.min_fft_order_;
60 info.do_forward_tests_ = options.do_forward_tests_;
61 info.do_inverse_tests_ = options.do_inverse_tests_;
63 info.known_failures_ = 0;
65 SetThresholds(&info);
    [all...]
test_rfft16_s32.c 31 struct TestInfo info; local
45 info.real_only_ = options.real_only_;
46 info.max_fft_order_ = options.max_fft_order_;
47 info.min_fft_order_ = options.min_fft_order_;
48 info.do_forward_tests_ = options.do_forward_tests_;
49 info.do_inverse_tests_ = options.do_inverse_tests_;
51 info.known_failures_ = 0;
52 info.forward_threshold_ = 90.12;
53 info.inverse_threshold_ = 89.28;
56 RunAllTests(&info);
    [all...]
test_rfft32.c 31 struct TestInfo info; local
44 info.real_only_ = options.real_only_;
45 info.min_fft_order_ = options.min_fft_order_;
46 info.max_fft_order_ = options.max_fft_order_;
47 info.do_forward_tests_ = options.do_forward_tests_;
48 info.do_inverse_tests_ = options.do_inverse_tests_;
50 info.known_failures_ = 0;
52 info.forward_threshold_ = 105.94;
53 info.inverse_threshold_ = 104.62;
60 RunAllTests(&info);
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
zip_writer.cc 140 FileInfo info; local
142 info.name = filename;
144 info.offset = raw_output_->ByteCount();
145 info.size = contents.size();
146 info.crc32 = ComputeCRC32(contents);
148 files_.push_back(info);
158 output.WriteLittleEndian32(info.crc32); // crc-32
159 output.WriteLittleEndian32(info.size); // compressed size
160 output.WriteLittleEndian32(info.size); // uncompressed size
  /external/chromium_org/third_party/skia/gm/
aaclip.cpp 117 const SkImageInfo& info = bm.info(); local
118 if (info.bytesPerPixel() == 4) {
119 return SkCanvas::NewRasterDirectN32(info.width(), info.height(),
128 static void test_image(SkCanvas* canvas, const SkImageInfo& info) {
130 bm.allocPixels(info);
133 if (info.isOpaque()) {
184 SkImageInfo info = SkImageInfo::Make(100, 100, rec[i].fCT, rec[i].fAT); variable
185 test_image(canvas, info);
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SampleLayers.cpp 46 SkImageInfo info = iter.device()->imageInfo(); local
49 info.width(), info.height(), iter.x(), iter.y(),
  /external/chromium_org/third_party/skia/src/gpu/
SkGrPixelRef.cpp 21 SkROLockPixelsPixelRef::SkROLockPixelsPixelRef(const SkImageInfo& info)
22 : INHERITED(info, &gROLockPixelsPixelRefMutex) {}
99 SkImageInfo info = SkImageInfo::Make(desc.fWidth, desc.fHeight, dstCT, kPremul_SkAlphaType); local
100 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (info, dst));
107 SkGrPixelRef::SkGrPixelRef(const SkImageInfo& info, GrSurface* surface,
108 bool transferCacheLock) : INHERITED(info) {
125 SkASSERT(info.fWidth <= fSurface->width());
126 SkASSERT(info.fHeight <= fSurface->height());
175 width = this->info().fWidth;
177 height = this->info().fHeight
    [all...]
  /external/chromium_org/third_party/skia/src/image/
SkImage_Raster.cpp 17 static bool ValidArgs(const Info& info, size_t rowBytes) {
21 if (info.fWidth < 0 || info.fHeight < 0) {
24 if (info.fWidth > maxDimension || info.fHeight > maxDimension) {
27 if ((unsigned)info.fColorType > (unsigned)kLastEnum_SkColorType) {
30 if ((unsigned)info.fAlphaType > (unsigned)kLastEnum_SkAlphaType) {
34 if (kUnknown_SkColorType == info.colorType()) {
40 if (rowBytes < SkImageMinRowBytes(info)) {
137 const SkImageInfo info = fBitmap.info(); local
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkOSFile_win.cpp 34 BY_HANDLE_FILE_INFORMATION info; local
35 if (0 == GetFileInformationByHandle(file, &info)) {
38 id->fVolume = info.dwVolumeSerialNumber;
39 id->fLsbSize = info.nFileIndexLow + (((ULONGLONG)info.nFileIndexHigh) << 32);
  /external/chromium_org/third_party/skia/tests/
PremulAlphaRoundTripTest.cpp 61 SkImageInfo info = bmp.info(); local
62 info.fColorType = colorType;
63 info.fAlphaType = kUnpremul_SkAlphaType;
64 canvas->writePixels(info, bmp.getPixels(), bmp.rowBytes(), 0, 0);
68 const SkImageInfo info = SkImageInfo::MakeN32Premul(256, 256); local
81 device.reset(SkBitmapDevice::Create(info));
94 device.reset(SkGpuDevice::Create(context, info, 0));
104 const SkImageInfo info = SkImageInfo::Make(256, 256, gUnpremul[upmaIdx].fColorType, local
107 readBmp1.allocPixels(info);
    [all...]
TileGridTest.cpp 37 SkTileGridFactory::TileGridInfo info; local
38 info.fMargin.set(borderPixels, borderPixels);
39 info.fOffset.setZero();
40 info.fTileInterval.set(10 - 2 * borderPixels, 10 - 2 * borderPixels);
41 SkTileGrid grid(2, 2, info, NULL);
55 SkTileGridFactory::TileGridInfo info; local
56 info.fMargin.setEmpty();
57 info.fOffset.setZero();
58 info.fTileInterval.set(10, 10);
63 SkTileGridFactory factory(info);
138 SkTileGridFactory::TileGridInfo info; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
vdso_support.cc 112 SymbolInfo info; local
113 if (vdso.LookupSymbol("__vdso_getcpu", "LINUX_2.6", STT_FUNC, &info)) {
116 fn = (GetCpuFn)(info.address);
139 SymbolInfo *info) const {
140 return image_.LookupSymbol(name, version, type, info);
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
vdso_support.cc 112 SymbolInfo info; local
113 if (vdso.LookupSymbol("__vdso_getcpu", "LINUX_2.6", STT_FUNC, &info)) {
116 fn = (GetCpuFn)(info.address);
139 SymbolInfo *info) const {
140 return image_.LookupSymbol(name, version, type, info);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
coff-objfmt.h 47 unsigned int info; /* Operation info */ member in struct:coff_unwind_code
72 void yasm_win64__uwinfo_destroy(coff_unwind_info *info);
74 /*@only@*/ coff_unwind_info *info,
  /external/chromium_org/tools/gn/
standard_out.cc 50 CONSOLE_SCREEN_BUFFER_INFO info; local
51 is_console = !!::GetConsoleScreenBufferInfo(hstdout, &info);
52 default_attributes = info.wAttributes;
  /external/chromium_org/tools/traceline/traceline/
sym_resolver.h 63 // collect all of the base addresses and query for more info.
74 IMAGEHLP_MODULE64 info; local
75 info.SizeOfStruct = sizeof(info);
76 if (SymGetModuleInfo64(proc_, bases[i], &info) != TRUE) {
79 std::string filename(info.ImageName);
94 SYMBOL_INFO info; member in struct:SymResolver::__anon20419
96 } info = {0}; local
98 info.info.SizeOfStruct = sizeof(info.info)
112 SYMBOL_INFO info; member in struct:SymResolver::__anon20420
114 } info = {0}; local
    [all...]
  /external/chromium_org/ui/android/java/src/org/chromium/ui/gfx/
DeviceDisplayInfo.java 96 PixelFormat info = new PixelFormat(); local
97 PixelFormat.getPixelFormatInfo(format, info);
98 return info.bitsPerPixel;
  /external/chromium_org/ui/display/chromeos/x11/
touchscreen_device_manager_x11.cc 110 XIDeviceInfo* info = XIQueryDevice(display_, XIAllDevices, &num_devices); local
112 if (!info[i].enabled || info[i].use != XIFloatingSlave)
119 for (int j = 0; j < info[i].num_classes; j++) {
120 XIAnyClassInfo* class_info = info[i].classes[j];
152 bool is_internal = IsTouchscreenInternal(display_, info[i].deviceid);
153 devices.push_back(TouchscreenDevice(info[i].deviceid,
159 XIFreeDeviceInfo(info);
  /external/chromium_org/ui/gfx/android/
java_bitmap.cc 26 AndroidBitmapInfo info; local
27 err = AndroidBitmap_getInfo(AttachCurrentThread(), bitmap_, &info);
29 size_ = gfx::Size(info.width, info.height);
30 format_ = info.format;
31 stride_ = info.stride;

Completed in 656 milliseconds

<<21222324252627282930>>