Searched refs:as (Results 1 - 25 of 332) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/usr/acpi/arch/x86/
H A Dvideo.c27 ACPI_STATUS as; local
32 as = AcpiGetName(handle, ACPI_FULL_PATHNAME, &namebufobj);
33 if (ACPI_FAILURE(as)) {
34 return as;
44 as = AcpiEvaluateObject(handle, "_DOS", &ArgList, NULL);
45 if (ACPI_SUCCESS(as)) {
53 as = AcpiEvaluateObjectTyped(handle, "_DOD", NULL, &retbuf, ACPI_TYPE_PACKAGE);
54 if (ACPI_SUCCESS(as)) {
56 } else if (as != AE_NOT_FOUND) {
57 ACPI_DEBUG("error executing _DOD method on %s: 0x%"PRIx32"\n", namebuf, as);
93 ACPI_STATUS as; local
[all...]
H A Dacpi_arch.c40 ACPI_STATUS as; local
46 as = AcpiInitializeObjects(ACPI_FULL_INITIALIZATION);
47 if (ACPI_FAILURE(as)) {
/barrelfish-2018-10-04/usr/acpi/
H A Dbuttons.c26 ACPI_STATUS as; local
29 as = AcpiEnterSleepStatePrep(OFF_STATE);
30 if (!ACPI_SUCCESS(as)) {
35 as = AcpiEnterSleepState(OFF_STATE);
37 if (!ACPI_SUCCESS(as)) {
64 ACPI_STATUS as; local
68 as = AcpiInstallFixedEventHandler(ACPI_EVENT_POWER_BUTTON,
70 if(ACPI_SUCCESS(as)) {
H A Dacpi_ec.c115 ACPI_STATUS as; local
137 as = AcpiEvaluateObject(ec->handle, method, NULL, NULL);
138 if (ACPI_FAILURE(as)) {
139 ACPI_DEBUG("EC: error 0x%"PRIx32" in query method %s\n", as, method);
154 ACPI_STATUS as = AE_OK; local
162 as = doread(ec, addr, &data);
163 if (ACPI_SUCCESS(as)) {
170 as = dowrite(ec, addr, data);
175 as = AE_ERROR;
178 if (ACPI_FAILURE(as)) {
190 ACPI_STATUS as; local
310 ACPI_STATUS as; local
[all...]
H A Dacpi.c97 ACPI_DEBUG("Warning: Treating non-fixed address range resource as fixed\n");
252 ACPI_STATUS as; local
256 as = AcpiEvaluateObjectTyped(handle, (CONST_CAST)name, NULL, &intbufobj, ACPI_TYPE_INTEGER);
257 if (ACPI_SUCCESS(as)) {
262 return as;
289 ACPI_STATUS as; local
292 as = AcpiWalkResources(handle, METHOD_NAME__CRS, fixed_resource_walker, NULL);
293 if (ACPI_FAILURE(as)) {
294 return as;
308 ACPI_STATUS as; local
456 ACPI_STATUS as = local
503 ACPI_STATUS as; local
528 ACPI_STATUS as; local
634 ACPI_STATUS as; local
688 ACPI_STATUS as; local
893 ACPI_STATUS as; local
[all...]
H A Dpcilnk_controller_client.c3 * \brief Interrupt Service Controller client. Registers itself as a controller for
39 ACPI_STATUS as = AcpiGetHandle(NULL, (CONST_CAST)device, &source); local
40 if (ACPI_FAILURE(as)) {
41 debug_printf(" failed lookup: %s\n", AcpiFormatException(as));
47 as = AcpiGetCurrentResources(source, &buf);
48 if (ACPI_FAILURE(as)) {
49 debug_printf(" failed getting _CRS: %s\n", AcpiFormatException(as));
77 ACPI_STATUS as = AcpiGetHandle(NULL, (CONST_CAST)device, &source); local
78 if (ACPI_FAILURE(as)) {
79 debug_printf(" failed lookup: %s\n", AcpiFormatException(as));
106 ACPI_STATUS as = AcpiGetHandle(NULL, (CONST_CAST)device, &source); local
[all...]
H A Dacpi_service.c101 ACPI_STATUS as; local
104 as = AcpiGetTable("MCFG", 1, &mcfg_header);
105 if (ACPI_SUCCESS(as) && mcfg_correct_length(mcfg_header->Length)) {
143 ACPI_STATUS as; local
146 as = AcpiGetHandle(NULL, (CONST_CAST)pathname, &handle);
147 if (ACPI_SUCCESS(as)) {
185 ACPI_STATUS as = AcpiReset(); local
186 if (ACPI_FAILURE(as)) {
201 ACPI_STATUS as = AcpiEnterSleepStatePrep(state); local
202 if (!ACPI_SUCCESS(as)) {
221 ACPI_STATUS as; local
[all...]
/barrelfish-2018-10-04/include/sys/
H A Dsyslimits.h38 #error this file needs sys/cdefs.h as a prerequisite
/barrelfish-2018-10-04/lib/cxx/unwind/
H A Dlibunwind.cpp75 unw_addr_space_t as,
78 if (as == (unw_addr_space_t) & sThisAddressSpace)
82 switch (as->cpuType) {
86 Registers_x86>(((unw_addr_space_i386 *)as)->oas, arg);
91 ((unw_addr_space_x86_64 *)as)->oas, arg);
96 ((unw_addr_space_ppc *)as)->oas, arg);
113 unw_addr_space_x86_64 *as = new unw_addr_space_x86_64(task); local
114 as->taskPort = task;
115 as->cpuType = CPU_TYPE_X86_64;
116 //as
74 unw_init_remote_thread(unw_cursor_t *cursor, unw_addr_space_t as, void *arg) argument
118 unw_addr_space_i386 *as = new unw_addr_space_i386(task); local
134 unw_addr_space_i386 *as = (unw_addr_space_i386 *)asp; local
139 unw_addr_space_x86_64 *as = (unw_addr_space_x86_64 *)asp; local
145 unw_addr_space_ppc *as = (unw_addr_space_ppc *)asp; local
[all...]
/barrelfish-2018-10-04/usr/acpi/arch/armv8/
H A Dacpi_arch.c34 ACPI_STATUS as; local
55 as = AcpiInitializeObjects(flags);
56 if (ACPI_FAILURE(as)) {
H A Dacpi_interrupts_arch.c32 ACPI_STATUS as; local
39 as = AcpiGetTable("APIC", 1, (ACPI_TABLE_HEADER **)&ath);
41 if(ACPI_FAILURE(as)) {
273 * There is no override for the timer interrupt, although it appears as IRQ2.
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/asm/
H A Dco-586.pl109 local($i,$as,$ae,$bs,$be,$ai,$bi);
120 $as=0;
140 $ai=$as;
163 $na=$as+($i < ($num-1));
178 $as++ if ($i < ($num-1));
200 local($i,$as,$ae,$bs,$be,$ai,$bi);
221 $as=0;
229 $ai=$as;
251 $na=$as+($i < ($num-1));
274 $as
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/asm/x86/
H A Dcomba.pl97 local($i,$as,$ae,$bs,$be,$ai,$bi);
108 $as=0;
128 $ai=$as;
151 $na=$as+($i < ($num-1));
166 $as++ if ($i < ($num-1));
188 local($i,$as,$ae,$bs,$be,$ai,$bi);
209 $as=0;
217 $ai=$as;
239 $na=$as+($i < ($num-1));
262 $as
[all...]
/barrelfish-2018-10-04/tools/fof/
H A DIntroLanguage.tex11 around the purely functional core of C, as described in
14 the language, as described in Section~\ref{sec:fof_syntax_constructs}.
32 bound to be extended as long as foreign functions are needed. This is
/barrelfish-2018-10-04/doc/015-disk-driver-arch/
H A Dfuture.tex6 benefit from more aspects of the \ac{ata} command set, such as {\tt TRIM} on
8 as simple as adding a further message definition.
14 Barrelfish as a whole. For instance, we do not really use the \acs{skb} to
23 from the initialization code as soon as a \ac{ahci} controller has been found.
35 port to the rest of the system as a separate entity, makes accomodating
38 multiplication status for that port) relatively easy as the only parts that
54 one might have to access \ac{pata}-based devices, such as older CDROM drives.
56 for a widespread \ac{pata} controller such as th
[all...]
H A Dconclusion.tex10 of further \ac{ata} transports, such as additional \acs{pata}/\acs{sata}
21 neccessary. This is a valid assumption, as filesystems and blockdevice-like
26 Performance is in the same order of magnitude as seen on Linux for large
/barrelfish-2018-10-04/usr/eclipseclp/documents/userman/
H A Dumssyntax.tex141 and will be interpreted as a single occurrence of the quote within the name.
143 cannot be used as an atom, unless quoted.
209 Text enclosed in SQ (string_quote) characters is parsed as a constant of type
215 interpreted as a single occurrence of the quote within the string.
221 Text enclosed in LQ (list_quote) characters is parsed as a list of numeric
222 character codes. For example, if the double quote \verb.". is defined as
223 list_quote, then \verb."abc". is parsed as \verb.[97,98,99]..
229 interpreted as a single occurrence of the quote within the string.
235 Text enclosed in CQ (chars_quote) characters is parsed as a list of single-atom
236 characters. For example, if the double quote \verb.". is defined as
[all...]
H A Dumsdynamic.tex40 \section{Compiling Procedures as Dynamic or Static}
54 only declares the procedure as dynamic and then makes the assertion.
56 A procedure is by default static unless it has been specifically declared as
62 consecutive parts is taken as a separate procedure which redefines
91 are added to the database (just as would happen if they were asserted),
113 already compiled, as \predspec{city/1} has been declared dynamic.
167 the system behaves as expected, the existing clauses
205 is a clause of the procedure \about{Proc}, is as follows.
209 just declares the given procedure silently as dynamic and executes
212 \item If \about{Proc} is already defined as
[all...]
/barrelfish-2018-10-04/lib/libc/rpc/
H A Dsvc_auth.c135 enum auth_stat as; local
137 as = (*asp->handler)(rqst, msg);
139 return (as);
/barrelfish-2018-10-04/include/arch/x86_64/
H A Dvarargs.h47 #error this file needs sys/cdefs.h as a prerequisite
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dthreadalloc.c48 static struct addr as[NR_ALLOCATED_THREADS]; variable in typeref:struct:addr
307 as[i].startaddr = saddr;
308 as[i].size = BUFFER_SIZE / NR_ALLOCATED_THREADS;
310 printf("start %d: %p, size %d: %d\n", i, as[i].startaddr, i, as[i].size);
342 err = domain_thread_create_on(curr_core_nr, initialize_memory, &as[i], NULL);
365 err = domain_thread_create_on(curr_core_nr, initialize_number, &as[i], NULL);
388 err = domain_thread_create_on(curr_core_nr, sqr, &as[i], NULL);
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/lib/
H A Drationals.pl38 % DESCRIPTION: Parse <int>/<int> as a rational number
51 % parse N/D as a rational if N and D are integers or rationals
61 % print rationals as (/)/2 structure or integer
/barrelfish-2018-10-04/usr/skb/programs/
H A Dmulticast.pl40 % construct links to all the neighbours of APIC_ID on the same package as it
53 % find the lowest APIC ID on the package as APIC_ID
60 % find all the cores on the same package as APIC_ID, and add pairs for them
84 % compute possible links to those packages as SendList1
93 % determine cost as maximum single-link RTT
/barrelfish-2018-10-04/doc/012-services/
H A DServices.tex49 In Barrelfish, a service can be implemented as a single-dispatcher
113 % defined as only providing the functionality of connecting the two
124 space for and create new capabilities, as well as to manipulate them
137 services that allow control of system abstractions such as
147 device. A device driver manages access to device hardware as well as
149 device drivers inlcude IO devices, as well as internal devices such as
[all...]
/barrelfish-2018-10-04/doc/022-armv8/
H A Dreport.tex49 Barrelfish now supports ARMv7 and ARMv8 as primary platforms, and we have
56 for ARMv8, as it presents a number of novel features, and greatly improved
73 card to be integrated as a first-class part of the system, with its own CPU
75 processor on the Pandaboard ES, which we use as a teaching platform in the
90 counter as a general-purpose register. These most likely caused difficulty in
127 to these guidelines, our job as systems programmers is significantly simpler:
130 as we already do for x86-64.
172 new boot and configuration subsystem, but should pay off in the long term, as
186 redesign of the CPU driver, as significant improvements and simplifications
192 address \texttt{0}, rather than \texttt{0x80000000} as mandate
[all...]

Completed in 258 milliseconds

1234567891011>>