HomeSort by relevance Sort by last modified time
    Searched refs:info (Results 226 - 250 of 4844) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openmax_dl/dl/sp/src/test/support/
float_rfft_neon.c 27 void SetThresholds(struct TestInfo* info) {
28 info->forward_threshold_ = FLOAT_RFFT_FORWARD_THRESHOLD_NEON;
29 info->inverse_threshold_ = FLOAT_RFFT_INVERSE_THRESHOLD_NEON;
float_rfft_x86.c 27 void SetThresholds(struct TestInfo* info) {
28 info->forward_threshold_ = FLOAT_RFFT_FORWARD_THRESHOLD_X86;
29 info->inverse_threshold_ = FLOAT_RFFT_INVERSE_THRESHOLD_X86;
  /external/chromium_org/third_party/skia/include/views/
SkOSWindow_NaCl.h 32 bool attach(SkBackEndTypes /* attachType */, int /* msaaSampleCount */, AttachmentInfo* info) {
33 info->fSampleCount = 0;
34 info->fStencilBits = 0;
  /external/chromium_org/tools/telemetry/telemetry/core/
system_info_unittest.py 22 info = system_info.SystemInfo.FromDict(data)
23 self.assertTrue(isinstance(info, system_info.SystemInfo))
24 self.assertTrue(isinstance(info.gpu, gpu_info.GPUInfo))
25 self.assertEquals(info.model_name, 'MacBookPro 10.1')
26 self.assertTrue(len(info.gpu.devices) == 1)
27 self.assertTrue(isinstance(info.gpu.devices[0], gpu_device.GPUDevice))
28 self.assertEquals(info.gpu.devices[0].vendor_id, 1000)
29 self.assertEquals(info.gpu.devices[0].device_id, 2000)
30 self.assertEquals(info.gpu.devices[0].vendor_string, 'a')
31 self.assertEquals(info.gpu.devices[0].device_string, 'b'
    [all...]
  /external/chromium_org/ui/ozone/platform/dri/
dri_buffer.cc 47 SkImageInfo info; local
48 void* pixels = const_cast<void*>(surface_->peekPixels(&info, NULL));
52 dri_->DestroyDumbBuffer(info, handle_, stride_, pixels);
55 bool DriBuffer::Initialize(const SkImageInfo& info) {
57 if (!dri_->CreateDumbBuffer(info, &handle_, &stride_, &pixels)) {
62 if (!dri_->AddFramebuffer(info.width(),
63 info.height(),
64 GetColorDepth(info.colorType()),
65 info.bytesPerPixel() << 3,
73 surface_ = skia::AdoptRef(SkSurface::NewRasterDirect(info, pixels, stride_))
104 SkImageInfo info = SkImageInfo::MakeN32Premul(size.width(), size.height()); local
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_filesrc.c 66 *mtime = file->info[idx].mtime;
69 *length = file->info[idx].length;
71 return file->info[idx].name;
  /external/ltrace/
type.h 60 struct arg_type_info *info; member in struct:arg_type_info::__anon6231::__anon6233
69 /* Return a type info for simple type TYPE (which shall not be array,
75 /* Initialize INFO so it becomes ARGTYPE_STRUCT. The created
78 void type_init_struct(struct arg_type_info *info);
80 /* Add a new field of type FIELD_INFO to a structure INFO. If OWN,
81 * the field type is owned and destroyed together with INFO. */
82 int type_struct_add(struct arg_type_info *info,
85 /* Get IDX-th field of structure type INFO. */
86 struct arg_type_info *type_struct_get(struct arg_type_info *info, size_t idx);
88 /* Return number of fields of structure type INFO. *
    [all...]
  /bionic/libc/include/sys/
sysinfo.h 36 extern int sysinfo (struct sysinfo *info);
  /cts/tests/tests/drm/src/android/drm/cts/
DrmSupportInfoTest.java 92 DrmSupportInfo info = new DrmSupportInfo(); local
93 info.setDescription(description);
94 assertEquals(info.getDescriprition(), description);
98 DrmSupportInfo info = new DrmSupportInfo(); local
100 info.setDescription(description);
108 DrmSupportInfo info = new DrmSupportInfo(); local
110 info.addFileSuffix(fileSuffix);
111 info = null;
119 DrmSupportInfo info = new DrmSupportInfo(); local
120 info.addFileSuffix(fileSuffix)
127 DrmSupportInfo info = new DrmSupportInfo(); local
137 DrmSupportInfo info = new DrmSupportInfo(); local
    [all...]
  /development/ndk/platforms/android-3/include/sys/
sysinfo.h 37 extern int sysinfo (struct sysinfo *info);
  /development/ndk/platforms/android-9/include/sys/
sysinfo.h 36 extern int sysinfo (struct sysinfo *info);
  /development/ndk/platforms/android-L/include/sys/
sysinfo.h 36 extern int sysinfo (struct sysinfo *info);
  /external/chromium_org/chrome/app/
delay_load_hook_win.cc 30 FARPROC OnPreLoadLibrary(DelayLoadInfo* info) {
34 std::string dll_name(info->szDll);
54 DelayLoadInfo* info) {
62 return OnPreLoadLibrary(info);
delay_load_hook_win.h 16 DelayLoadInfo* info);
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_basic_info.h 16 // Fills the |info| dictionary with basic information about the extension.
20 base::DictionaryValue* info);
  /external/chromium_org/components/metrics/net/
wifi_access_point_info_provider.cc 19 bool WifiAccessPointInfoProvider::GetInfo(WifiAccessPointInfo *info) {
  /external/chromium_org/content/child/service_worker/
service_worker_registration_handle_reference.h 22 const ServiceWorkerRegistrationObjectInfo& info,
28 const ServiceWorkerRegistrationObjectInfo& info,
33 const ServiceWorkerRegistrationObjectInfo& info() const { return info_; } function in class:content::ServiceWorkerRegistrationHandleReference
39 const ServiceWorkerRegistrationObjectInfo& info,
  /external/chromium_org/net/dns/
mapped_host_resolver.cc 27 RequestInfo info = original_info; local
28 int rv = ApplyRules(&info);
32 return impl_->Resolve(info, priority, addresses, callback, out_req, net_log);
38 RequestInfo info = original_info; local
39 int rv = ApplyRules(&info);
43 return impl_->ResolveFromCache(info, addresses, net_log);
62 int MappedHostResolver::ApplyRules(RequestInfo* info) const {
63 HostPortPair host_port(info->host_port_pair());
67 info->set_host_port_pair(host_port);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8CanvasRenderingContext2DCustom.cpp 68 void V8CanvasRenderingContext2D::strokeStyleAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
70 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toImpl(info.Holder());
71 v8SetReturnValue(info, toV8Object(impl->strokeStyle(), info.Holder(), info.GetIsolate()));
74 void V8CanvasRenderingContext2D::strokeStyleAttributeSetterCustom(v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
76 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toImpl(info.Holder());
77 if (RefPtrWillBeRawPtr<CanvasStyle> canvasStyle = toCanvasStyle(value, info.GetIsolate())) {
85 void V8CanvasRenderingContext2D::fillStyleAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
87 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toImpl(info.Holder())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestInterfaceGarbageCollected.cpp 36 static void attr1AttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
38 v8::Handle<v8::Object> holder = info.Holder();
40 v8SetReturnValueFast(info, WTF::getPtr(impl->attr1()), impl);
43 static void attr1AttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info)
46 TestInterfaceGarbageCollectedV8Internal::attr1AttributeGetter(info);
50 static void attr1AttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
52 v8::Handle<v8::Object> holder = info.Holder();
54 TestInterfaceGarbageCollected* cppValue = V8TestInterfaceGarbageCollected::toImplWithTypeCheck(info.GetIsolate(), v8Value);
58 static void attr1AttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
61 TestInterfaceGarbageCollectedV8Internal::attr1AttributeSetter(v8Value, info);
    [all...]
  /external/chromium_org/third_party/skia/gm/
peekpixels.cpp 15 SkImageInfo info = canvas->imageInfo(); local
18 canvas->drawCircle(SkScalarHalf(info.width()), SkScalarHalf(info.height()),
19 SkScalarHalf(info.width()), paint);
36 SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100); variable
37 SkAutoTUnref<SkSurface> surface(canvas->newSurface(info));
46 SkImageInfo info; variable
48 const void* addr = surfCanvas->peekPixels(&info, &rowBytes);
49 if (addr && bitmap.installPixels(info, const_cast<void*>(addr), rowBytes)) {
  /external/chromium_org/third_party/skia/include/core/
SkImageGenerator.h 53 virtual bool getInfo(SkImageInfo* info) { return this->onGetInfo(info); }
54 virtual bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
55 return this->onGetPixels(info, pixels, rowBytes, NULL, NULL);
76 bool getInfo(SkImageInfo* info);
80 * least (info.fHeight - 1) * rowBytes + (info.fWidth *
86 * @param info A description of the format (config, size)
88 * to the info returned by getInfo().
94 * If info is kIndex8_SkColorType, then the caller must provide storage for up to 25
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkGetCondensedInfo.cpp 64 const SkMemberInfo* info = SkMemberInfo::Find(type, matchPtr); local
65 SkASSERT(info);
66 return info;
71 const SkMemberInfo* info = gInfoTables[lookup]; local
72 if (info->fType == SkType_BaseClassInfo) {
73 int baseTypeLookup = info->fOffset;
79 info++;
81 SkASSERT(info->fType != SkType_BaseClassInfo);
84 int index = _searchByName(&info->fName, count, strings, match);
87 return &info[index]
92 const SkMemberInfo* info = gInfoTables[lookup]; local
    [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.width() < 0 || info.height() < 0) {
24 if (info.width() > maxDimension || info.height() > maxDimension) {
27 if ((unsigned)info.colorType() > (unsigned)kLastEnum_SkColorType) {
30 if ((unsigned)info.alphaType() > (unsigned)kLastEnum_SkAlphaType) {
34 if (kUnknown_SkColorType == info.colorType()) {
40 if (rowBytes < SkImageMinRowBytes(info)) {
152 const SkImageInfo info = fBitmap.info(); local
    [all...]
  /external/chromium_org/third_party/skia/tools/
LazyDecodeBitmap.cpp 37 SkImageInfo info; local
38 if ((NULL == gen.get()) || !gen->getInfo(&info)) {
42 if ((!FLAGS_useVolatileCache) || (info.width() * info.height() < 32 * 1024)) {

Completed in 1635 milliseconds

1 2 3 4 5 6 7 8 91011>>