HomeSort by: relevance | last modified time | path
    Searched refs:Actual (Results 1 - 15 of 15) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
aslfileio.c 167 UINT32 Actual;
172 Actual = fread (Buffer, 1, Length, AslGbl_Files[FileId].Handle);
173 if (Actual < Length)
211 UINT32 Actual;
216 Actual = fwrite ((char *) Buffer, 1, Length, AslGbl_Files[FileId].Handle);
217 if (Actual != Length)
227 Actual = fwrite ((char *) Buffer, 1, Length,
229 if (Actual != Length)
259 INT32 Actual;
264 Actual = vfprintf (AslGbl_Files[FileId].Handle, Format, Args)
    [all...]
dttemplate.c 393 int Actual;
439 /* Dump the actual ACPI table */
470 Actual = DtEmitDefinitionBlock (
472 if (Actual < 0)
482 Actual = DtEmitDefinitionBlock (
484 if (Actual < 0)
493 Actual = DtEmitDefinitionBlock (
495 if (Actual < 0)
503 Actual = DtEmitDefinitionBlock (
505 if (Actual < 0
    [all...]
aslhex.c 133 UINT32 Actual;
136 Actual = fread (Buffer, 1, HEX_TABLE_LINE_SIZE,
145 return (Actual);
aslerror.c 360 int Actual;
430 Actual = fseek (SourceFile,
432 if (Actual)
698 * CurrentLineNumber - Actual file line number
795 * LineNumber - Actual file line number
797 * SourceLine - Actual source code line
828 * CurrentLineNumber - Actual file line number
871 * CurrentLineNumber - Actual file line number
877 * SourceLine - Actual line of source code
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
apfiles.c 162 ACPI_SIZE Actual;
213 Actual = fwrite (Table, 1, TableLength, File);
214 if (Actual != TableLength)
247 ACPI_SIZE Actual;
281 Actual = fread (Buffer, 1, FileSize, File);
282 if (Actual != FileSize)
  /src/sys/external/bsd/acpica/dist/tools/acpibin/
abcompare.c 206 UINT32 Actual;
217 Actual = fread (&Header1, 1, sizeof (ACPI_TABLE_HEADER), File);
220 if (Actual != sizeof (ACPI_TABLE_HEADER))
247 UINT32 Actual;
260 Actual = fread (&Header1, 1, sizeof (ACPI_TABLE_HEADER), File);
261 if (Actual < sizeof (ACPI_TABLE_HEADER))
289 Actual = fread (Table, 1, Header1.Length, File);
290 if (Actual != Header1.Length)
323 Actual = fwrite (&Header1, 1, sizeof (ACPI_TABLE_HEADER), File);
324 if (Actual != sizeof (ACPI_TABLE_HEADER)
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
adfile.c 115 * RETURN: Actual number of bytes written
128 ACPI_SIZE Actual;
138 Actual = fwrite (Buffer, 1, (size_t) Length, File);
139 if (Actual != Length)
145 return ((INT32) Actual);
acfileio.c 482 ACPI_SIZE Actual;
508 Actual = fread (&TableHeader, 1, HeaderLength, File);
514 if (Actual < HeaderLength)
517 "Could not read entire table header: Actual %u, Requested %u\n",
518 (UINT32) Actual, HeaderLength);
  /src/sys/external/bsd/acpica/dist/tools/acpisrc/
asfile.c 779 size_t Actual;
815 Actual = fread (Buffer, 1, Size, File);
816 if (Actual != Size)
879 size_t Actual;
903 Actual = fwrite (FileBuffer, 1, FileSize, File);
904 if (Actual != FileSize)
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
COFFMasmParser.cpp 386 MCSymbol *Actual = getContext().getOrCreateSymbol(ActualName);
388 getStreamer().emitWeakReference(Alias, Actual);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
Lint.cpp 221 Value *Actual = *AI;
224 Assert(Formal->getType() == Actual->getType(),
232 if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy()) {
253 if (Formal->hasStructRetAttr() && Actual->getType()->isPointerTy()) {
256 Actual, LocationSize::precise(DL->getTypeStoreSize(Ty)));
  /src/crypto/external/apache2/openssl/dist/crypto/bn/asm/
ia64-mont.pl 501 // The loop is scheduled for 32*n ticks on Itanium 2. Actual attempt
  /src/crypto/external/bsd/openssl/dist/crypto/bn/asm/
ia64-mont.pl 501 // The loop is scheduled for 32*n ticks on Itanium 2. Actual attempt
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/asm/
ia64-mont.pl 500 // The loop is scheduled for 32*n ticks on Itanium 2. Actual attempt
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 306 // The actual intersection.
696 // An actual vector type cannot have 0 elements, so we can treat scalars
2000 /// with actual values specified by ArgMap.
2128 // Compute the map of formal to actual arguments.
2146 // Resolve formal arguments to their actual value.
2397 unsigned Actual) {
2398 TP.error("Instruction '" + InstName + "' was provided " + Twine(Actual) +
2404 unsigned Actual) {
2406 "' expects more than the provided " + Twine(Actual) + " operands!");
2908 // Get the actual number of results before Operator is converted to an intrinsi
    [all...]

Completed in 23 milliseconds