search for: subtables

Displaying 20 results from an estimated 26 matches for "subtables".

Did you mean: subtable
2012 Nov 05
2
[PATCH] x86/ACPI: invalidate BGRT
...cpi_table_header header; /* Common ACPI table header */ +}; + +/* FPDT subtable header */ + +struct acpi_fpdt_header { + u16 type; + u8 length; + u8 revision; +}; + +/* Values for Type field above */ + +enum acpi_fpdt_type { + ACPI_FPDT_TYPE_BOOT = 0, + ACPI_FPDT_TYPE_S3PERF = 1, +}; + +/* + * FPDT subtables + */ + +/* 0: Firmware Basic Boot Performance Record */ + +struct acpi_fpdt_boot { + struct acpi_fpdt_header header; + u8 reserved[4]; + u64 reset_end; + u64 load_start; + u64 startup_start; + u64 exit_services_entry; + u64 exit_services_exit; +}; + +/* 1: S3 Performance Table Pointer Record */ + +...
2012 Sep 19
1
[PATCH 1/1] lua: Cleaned up the dmi table structure in Lua.c32 and added all missing DMI subtables
...ng(L, "bios.firmware_revision"); - lua_pushstring(L, dmi.bios.firmware_revision); - lua_settable(L,-3); - lua_pushstring(L, "bios.address"); - lua_pushnumber(L, dmi.bios.address); - lua_settable(L,-3); +/* +** {====================================================== +** DMI subtables +** ======================================================= +*/ +static int get_bios_table(lua_State *L, s_dmi *dmi_ptr) +{ + s_bios *bios = &dmi_ptr->bios; - lua_pushstring(L, "bios.runtime_size"); - lua_pushnumber(L, dmi.bios.runtime_size); + if (!bios->filled) + retur...
2010 Dec 01
1
Prawn : undefined method `make_table'
require ''prawn'' require ''prawn/core'' require ''prawn/layout'' Prawn::Document.new do |pdf| subtable = pdf.make_table([[ "foo", "bar" ], [ "baz", "bax" ]], :column_widths => [ 50, 50 ]) { column(0).background_color = "808080" cells.borders = []
2012 Nov 07
0
[PATCH v2] x86/ACPI: invalidate BGRT if necessary
...cpi_table_header header; /* Common ACPI table header */ +}; + +/* FPDT subtable header */ + +struct acpi_fpdt_header { + u16 type; + u8 length; + u8 revision; +}; + +/* Values for Type field above */ + +enum acpi_fpdt_type { + ACPI_FPDT_TYPE_BOOT = 0, + ACPI_FPDT_TYPE_S3PERF = 1, +}; + +/* + * FPDT subtables + */ + +/* 0: Firmware Basic Boot Performance Record */ + +struct acpi_fpdt_boot { + struct acpi_fpdt_header header; + u8 reserved[4]; + u64 reset_end; + u64 load_start; + u64 startup_start; + u64 exit_services_entry; + u64 exit_services_exit; +}; + +/* 1: S3 Performance Table Pointer Record */ + +...
2010 Sep 19
1
odds ratios for n-way tables: seeking an *apply-able method
...F, odds ratios can be defined in several ways; one simple way, particularly for tables with ordered factors, is to calculate the set of continuation odds ratios, based on the (R-1)x(C-1) set of 2x2 tables with elements F[i:(i+1), j:(j+1)] What I think I want is a method to extract all such 2x2 subtables to a structure (list?) so that I can use *apply or plyr methods to do the computations of (log) odds ratio (& std error) for each, and return these in a suitable form. Below, I define a function OR2x2 that calculates the (log) odds ratio for one 2x2 table, and another, OR, that uses loops t...
2008 Jul 30
1
odds ratios in multiway tables (stratified)
Hi, does anyone know of a function to calculate odds ratios in multiway tables (stratified) (+ the other usual statistics involved) i mean: say we have a table r*c*d, For every d (depth) we have a r*c table, and in this table the odds ratio's are calculated for every 2*2 subtable in it. logically this function would look like): ORs(multiwaytable) or ORs(data$var1r,data$var2c,data$var3d)
2011 Oct 14
0
Any data table component for rails?
Hello all, is there any data table component for rails which can sort/search/pagination etc? I''ve checked out jquery plugin datatables, which can sort/search/pagination, but for large dataset of course need to go server side, need to pass params[:sort]/params[:search]/params[:pagination] to server side, which involves a lot of code, I''ve checked out rubygems.org and found a
2013 Sep 12
1
Getting "Approximate Estimates after Deleting Factors" out from fastbw()
Hello! I am using relatively simple linear model. By applying fastbw() on ols() results from rms package I would like to get subtable "Approximate Estimates after Deleting Factors". However, it seems this is not possible. Am I right? I can only get coefficients for variables kept in the model (for example: x$coefficients), but not S.E., Wald's Z and P? Is there any easy way to
2014 Feb 18
1
Add general UPS SNMP agent as a nut client
hem, in the hurry of sending, I've forgotten a link... 2014-02-18 22:45 GMT+01:00 Arnaud Quette <aquette.dev at gmail.com>: > > > 2014-02-16 8:31 GMT+01:00 <alf at i100.no>: > (...) > > That made me realize that it's still not referenced on the NUT Related > Projects page. > (yup Charles, yet another unshared thing...) > This last point is now
2003 Mar 06
0
modifying ftable to allow percentages (wishlist) (PR#2606)
Full_Name: John Hendrickx Version: 1.6.2 OS: Windows XP Submission from: (NULL) (80.126.78.108) (This is not a bug report but a request to add a feature to future versions of R. Hope this is an appropriate place). I'd like to suggest adding an option to ftable to allow percentages. It would be easy to do and backwards compatible. Percentage tables are useful in educational contexts, whereas
2007 Nov 17
2
Getting Annual (Conditional) Averages
Hello, I'm very new to R, and so my question is simple. I have data record with 80 years of daily temperatures in one long string. The dates are also recorded, in YYMMDD format. I'd like to learn an elegant simple way to pull out the annual averages. (Obviously, every 4th year has 366 days.) I know I can set up a formal loop to create annual records and then average. But R
2018 Feb 07
1
Addressing the problem of noisy GPUs under Nouveau
On 01/28/2018 04:05 PM, Martin Peres wrote: > On 29/01/18 01:24, Martin Peres wrote: >> On 28/11/17 07:32, John Hubbard wrote: >>> On 11/23/2017 02:48 PM, Martin Peres wrote: >>>> On 23/11/17 10:06, John Hubbard wrote: >>>>> On 11/22/2017 05:07 PM, Martin Peres wrote: >>>>>> Hey, >>>>>> >>>>>> Thanks
2013 Jan 18
0
Wine release 1.5.22
The Wine development release 1.5.22 is now available. What's new in this release (see below for details): - New version of the Gecko engine. - Beginnings of the Mac graphics driver. - Support for ARM64 platforms. - Fixes for RTL text in Uniscribe. - Various bug fixes. The source is available from the following locations:
2018 Dec 13
1
[virtio-dev] Re: [PATCH v5 5/7] iommu: Add virtio-iommu driver
On 2018-12-12 3:27 pm, Auger Eric wrote: > Hi, > > On 12/12/18 3:56 PM, Michael S. Tsirkin wrote: >> On Fri, Dec 07, 2018 at 06:52:31PM +0000, Jean-Philippe Brucker wrote: >>> Sorry for the delay, I wanted to do a little more performance analysis >>> before continuing. >>> >>> On 27/11/2018 18:10, Michael S. Tsirkin wrote: >>>> On
2013 Mar 29
1
Wine release 1.5.27
...s initializers. hlink: Add link stack to browser context. hlink: Implement IHlinkBrowseContext_GetHlink(). hlink: Implement IHlinkBrowseContext_UpdateHlink(). hlink: Implement IHlinkBrowseContext_SetCurrentHlink(). Phil Krylov (1): usp10: Support GPOS extension lookup subtables. Piotr Caban (46): msvcp90: Added time_put class stub. msvcp90: Added time_put class implementation. msvcp90: Added collate facet to locale object. msvcp90: Added time_put facet to locale object. msvcp: Sync implementations. vbscript: Added IMatchCollection inte...
2010 Dec 03
1
[LLVMdev] Alternative exception handling proposal
Hi Bill, there is clearly a misunderstanding: either I am missing something essential or you are. To clear this up, I suggest you send me evil examples and I will show you how my scheme handles them (or doesn't handle them, if I am indeed failing to see something). > This is the code that G++ generates from the example in my proposal: ... > If the call to __Z3foov throws, we need to
2010 May 28
0
Wine release 1.2-rc2
The Wine development release 1.2-rc2 is now available. There are no new features in this release, only bug fixes, since we are in code freeze. If you find a new feature that's a bug. The source is available from the following locations: http://ibiblio.org/pub/linux/system/emulators/wine/wine-1.2-rc2.tar.bz2 http://prdownloads.sourceforge.net/wine/wine-1.2-rc2.tar.bz2 Binary packages
2012 Aug 17
0
Wine release 1.5.11
The Wine development release 1.5.11 is now available. What's new in this release (see below for details): - Multi-channel support in the ALSA driver. - Removal of the big X11 lock. - Support for pair positioning adjustments in Uniscribe. - More I/O stream implementations in the C++ runtime. - Various bug fixes. The source is available from the following locations:
2012 Jul 17
0
Wine release 1.5.9
The Wine development release 1.5.9 is now available. What's new in this release (see below for details): - Support for GPOS font tables in Uniscribe. - Support for XRandr 1.2 and 1.3. - Parser improvements for the HLSL compiler. - More key exchange algorithms supported on Mac OS. - Relay tracing on ARM. - Various bug fixes. The source is available from the following locations:
2018 Jan 28
3
Addressing the problem of noisy GPUs under Nouveau
On 28/11/17 07:32, John Hubbard wrote: > On 11/23/2017 02:48 PM, Martin Peres wrote: >> On 23/11/17 10:06, John Hubbard wrote: >>> On 11/22/2017 05:07 PM, Martin Peres wrote: >>>> Hey, >>>> >>>> Thanks for your answer, Andy! >>>> >>>> On 22/11/17 04:06, Ilia Mirkin wrote: >>>>> On Tue, Nov 21, 2017 at 8:29