Home
last modified time | relevance | path

Searched refs:This (Results 1 – 25 of 55) sorted by relevance

123

/third_party/lib/acpica/source/tools/acpihelp/
A Dahdecode.c788 const char *This; in AhPrintOneField() local
793 This = Field; in AhPrintOneField()
802 Last = This + strlen (This); in AhPrintOneField()
803 while ((Next = strpbrk (This, " "))) in AhPrintOneField()
805 TokenLength = Next - This; in AhPrintOneField()
816 printf ("%.*s ", (int) TokenLength, This); in AhPrintOneField()
817 This = Next + 1; in AhPrintOneField()
822 TokenLength = Last - This; in AhPrintOneField()
831 printf ("%s", This); in AhPrintOneField()
/third_party/dev/ethernet/e1000/
A DREADME.fuchsia4 This directory contains a port of the FreeBSD Intel ethernet driver. Original
12 This port contains the complete source of the FreeBSD driver, with a few
24 - New source file, adapted from the files listed above. This file
A DREADME24 This file describes the FreeBSD* driver for Intel Network Connection.
25 This driver has been developed for use with FreeBSD, Release 7.x.
67 This will create an em-x.x.x directory.
144 This driver supports the following media type options:
194 - The maximum MTU setting for Jumbo Frames is 16110. This value coincides
340 This issue MAY be resolved by updating to the latest BIOS. You can
398 This software program is released under the terms of a license agreement
/third_party/lib/acpica/source/include/acpica/platform/
A Dacefiex.h167 struct _SIMPLE_TEXT_OUTPUT_INTERFACE *This,
173 struct _SIMPLE_TEXT_OUTPUT_INTERFACE *This,
179 struct _SIMPLE_TEXT_OUTPUT_INTERFACE *This,
185 struct _SIMPLE_TEXT_OUTPUT_INTERFACE *This,
193 struct _SIMPLE_TEXT_OUTPUT_INTERFACE *This,
199 struct _SIMPLE_TEXT_OUTPUT_INTERFACE *This,
205 struct _SIMPLE_TEXT_OUTPUT_INTERFACE *This);
210 struct _SIMPLE_TEXT_OUTPUT_INTERFACE *This,
217 struct _SIMPLE_TEXT_OUTPUT_INTERFACE *This,
269 struct _SIMPLE_INPUT_INTERFACE *This,
[all …]
/third_party/ulib/jemalloc/
A DChangeLog18 extents. This tends to improve locality (decrease fragmentation) when
22 - Mark partially purged arena chunks as non-huge-page. This improves
27 allocations. This regression was first released in 4.0.0. (@jasone,
82 - Fix TSD fetches to avoid (recursive) allocation. This is relevant to
131 crashes). This is relevant at least to some ARM-based platforms.
243 This bugfix release addresses a few bugs specific to heap profiling.
449 memory decreases. This regression was first released in 3.5.0.
477 return from malloc(). This regression was introduced in 3.5.0.
494 This version primarily addresses minor bugs in test code.
606 specified). This regression was introduced in 3.1.0 by the
[all …]
A DINSTALL44 it is linked to. This works only on ELF-based systems.
68 This makes it possible to use jemalloc at the same time as the system
76 Don't export public APIs. This can be useful when building jemalloc as a
100 Disable code that silences non-useful compiler warnings. This is mainly
105 Enable assertions and validation code. This incurs a substantial
129 dereferencing metadata. This incurs a minor performance hit, and causes
173 Disable zone allocator for Darwin. This means jemalloc won't be hooked as
177 Enable utrace(2)-based allocation tracing. This feature is not broadly
207 Disable use of syscall(2) rather than {open,read,write,close}(2). This is
212 Disable C++ integration. This will cause new and delete operator
[all …]
/third_party/lib/acpica/source/components/debugger/
A Ddbconvert.c235 char *This; in AcpiDbConvertToPackage() local
246 This = String; in AcpiDbConvertToPackage()
249 This = AcpiDbGetNextToken (This, &Next, &Type); in AcpiDbConvertToPackage()
250 if (!This) in AcpiDbConvertToPackage()
257 Status = AcpiDbConvertToObject (Type, This, &Elements[i]); in AcpiDbConvertToPackage()
265 This = Next; in AcpiDbConvertToPackage()
A Ddbinput.c658 char *This; in AcpiDbGetLine() local
670 This = AcpiGbl_DbParsedBuf; in AcpiDbGetLine()
673 AcpiGbl_DbArgs[i] = AcpiDbGetNextToken (This, &Next, in AcpiDbGetLine()
680 This = Next; in AcpiDbGetLine()
/third_party/uapp/dash/src/
A Dmkbuiltins65 * This file was generated by the mkbuiltins program.
101 * This file was generated by the mkbuiltins program.
A DTOUR3 NOTE -- This is the original TOUR paper distributed with ash and
115 OPTIONS.C: This file contains the option processing code. It is
219 restored without forking off a child process. This is accom-
242 by the user's home directory, the flag "didudir" is set. This
278 ing. This is kind of like getopt, but you don't pass argc and
279 argv to it. Builtin routines can also call error. This routine
294 when the program is linked into ash. This #define should appear
298 CD.C: This file defines the cd and pwd builtins. The pwd com-
319 which is to be stored in memory. This last is used when a buil-
329 input to come from a string rather than a file. (This is for the
/third_party/ulib/cksum/
A DLICENSE5 This software is provided 'as-is', without any express or implied
19 3. This notice may not be removed or altered from any source distribution.
/third_party/ulib/linenoise/
A DREADME.fuchsia.md1 This is a port of linenoise for the Zircon userspace.
/third_party/ulib/musl/
A DREADME.fuchsia.md1 This is a copy of [musl](http://www.musl-libc.org/) at commit
/third_party/lib/acpica/generate/unix/
A Dreadme.txt59 tree itself. This prevents collisions when different utilities compile
96 This is a smaller version of acpiexec that loads an acpi table and
104 here) into a version that meets Linux coding guidelines. This consists
119 Language). This AML is suitable for inclusion as a DSDT in system
/third_party/lib/acpica/source/compiler/
A Dasltree.c1299 ACPI_PARSE_OBJECT *This; in TrLinkPeerNodes() local
1310 This = va_arg (ap, ACPI_PARSE_OBJECT *); in TrLinkPeerNodes()
1311 Start = This; in TrLinkPeerNodes()
1318 DbgPrint (ASL_PARSE_OUTPUT, "%u=%p ", (i+1), This); in TrLinkPeerNodes()
1320 while (This->Asl.Next) in TrLinkPeerNodes()
1322 This = This->Asl.Next; in TrLinkPeerNodes()
1335 This->Asl.Next = Next; in TrLinkPeerNodes()
1336 This = Next; in TrLinkPeerNodes()
A Dreadme.txt60 directory. This is a bug in Bison. The default Windows project file for
89 This procedure adds the iASL compiler as a custom tool that can be used
128 This procedure creates a project that compiles ASL files to AML.
/third_party/lib/acpica/
A Dchanges.txt3709 This
3877 This
4228 This
4242 This
4422 This
4833 This
5030 This
5429 This
5586 This
6516 This
[all …]
/third_party/ulib/jemalloc/include/jemalloc/internal/
A Dsmoothstep.sh61 * This file was generated by the following command:
67 * This header defines a precomputed table based on the smoothstep family of
A Djemalloc_internal_defs.h.in5 * public APIs to be prefixed. This makes it possible, with some care, to use
155 * This makes it possible to allocate/deallocate objects without any locking
200 * This is the normal order of things for mmap()/munmap(), but on Windows
208 * later reuse. This is disabled by default on Linux because common sequences
262 * madvise(..., MADV_FREE) : This marks pages as being unused, such that they
264 * madvise(..., MADV_DONTNEED) : This immediately discards pages, such that
/third_party/ulib/chromiumos-platform-ec/
A DREADME.fuchsia5 This is a partial import of the ChromiumOS EC code, to simplify implementing a CrOS EC driver.
/third_party/ulib/lz4/
A DREADME.md10 …ata streams compatible with `lz4` command line utility, use **lz4frame**. This library encapsulate…
11 (_Advanced stuff_ : It's possible to hide xxhash symbols into a local namespace. This is what `libl…
/third_party/ulib/ngunwind/
A DREADME.fuchsia.md1 This unwinder is based on the nongnu libunwind.
/third_party/lib/cortex-strings/
A DREADME.fuchsia11 This works around https://bugs.llvm.org//show_bug.cgi?id=34488
/third_party/ulib/jemalloc/include/jemalloc/
A Djemalloc_mangle.sh30 * public jemalloc API if JEMALLOC_NO_DEMANGLE is defined. This is primarily
/third_party/ulib/jemalloc/m4/
A Dax_cxx_compile_stdcxx.m439 # and this notice are preserved. This file is offered as-is, without any
44 dnl This macro is based on the code from the AX_CXX_COMPILE_STDCXX_11 macro
161 #error "This is not a C++ compiler"
165 #error "This is not a C++11 compiler"
450 #error "This is not a C++ compiler"
454 #error "This is not a C++14 compiler"

Completed in 57 milliseconds

123