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

  /src/sys/external/bsd/acpica/dist/utilities/
utascii.c 88 * Position - Byte position (0-3)
104 UINT32 Position)
111 /* Allow a '!' in the last position */
113 if (Character == '!' && Position == 3)
uthex.c 64 * Position - bit position of the digit within the
76 UINT32 Position)
80 AcpiUtShortShiftRight (Integer, Position, &Index);
  /src/sys/external/bsd/acpica/dist/common/
adfile.c 200 char *Position;
216 Position = strrchr (NewFilename, '.');
218 if (Position && (Position > DirectoryPosition))
222 Position++;
223 *Position = 0;
224 strcat (Position, Suffix);
  /src/sys/external/bsd/gnu-efi/dist/lib/
init.c 119 UINTN Index, Position, Length;
148 for (Position=0; Position < Length; Position += ISO_639_2_ENTRY_SIZE) {
154 if (CompareMem (Languages+Position, LangCode, ISO_639_2_ENTRY_SIZE) == 0) {
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahdecode.c 77 * CurrentPosition - Position on current line
81 * RETURN: Line position after field is written
94 UINT32 Position;
102 Position = CurrentPosition;
104 if (Position == 0)
107 Position = Indent;
114 Position += TokenLength;
118 if (Position > MaxPosition)
121 Position = TokenLength;
133 Position += TokenLength
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
cvcompiler.c 151 * retain it's position for stylistic reasons. If it doesn't,
388 char *Position;
405 Position = strrchr (NewFilename, '.');
407 if (Position && (Position > DirectoryPosition))
411 Position++;
412 *Position = 0;
413 strcat (Position, FILE_SUFFIX_DISASSEMBLY);
aslresource.c 481 * Position - Bit position within the flag byte
497 UINT8 Position,
505 *Flags |= (DefaultBit << Position);
511 *Flags |= (((UINT8) Op->Asl.Value.Integer) << Position);
520 UINT8 Position,
528 *Flags |= (DefaultBit << Position);
534 *Flags |= (((UINT16) Op->Asl.Value.Integer) << Position);
aslcompiler.h 1299 UINT8 Position,
1306 UINT8 Position,
  /src/common/dist/zlib/contrib/delphi/
ZLib.pas 69 The Position property returns the number of uncompressed bytes of
102 backwards. The special case of setting the stream position to zero is
103 allowed. Seeking forward decompresses data until the requested position in
108 The Position property returns the number of bytes of uncompressed data that
393 FStrmPos := Strm.Position;
423 if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
448 if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
457 FStrmPos := FStrm.Position;
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsfield.c 330 UINT64 Position;
362 Position = (UINT64) Info->FieldBitPosition +
365 if (Position > ACPI_UINT32_MAX)
372 Info->FieldBitPosition = (UINT32) Position;
487 /* Keep track of bit position for the next field */
489 Position = (UINT64) Info->FieldBitPosition +
492 if (Position > ACPI_UINT32_MAX)
  /src/sys/external/bsd/acpica/dist/include/
acmacros.h 337 * MASK_BITS_ABOVE creates a mask starting AT the position and above
338 * MASK_BITS_BELOW creates a mask starting one bit BELOW the position
344 #define ACPI_MASK_BITS_ABOVE(position) (~((ACPI_UINT64_MAX) << ((UINT32) (position))))
345 #define ACPI_MASK_BITS_BELOW(position) ((ACPI_UINT64_MAX) << ((UINT32) (position)))
368 #define ACPI_GET_BITS(SourcePtr, Position, Mask) \
369 ((*(SourcePtr) >> (Position)) & (Mask))
371 #define ACPI_SET_BITS(TargetPtr, Position, Mask, Value) \
372 (*(TargetPtr) |= (((Value) & (Mask)) << (Position)))
    [all...]
acutils.h 205 UINT32 Position);
366 UINT32 Position);
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
GZipStream.cs 237 #region Position & length stuff
271 /// Gets/sets the current position in the <c>GZipStream</c>. Not supported.
275 public override long Position
  /src/sys/external/bsd/gnu-efi/dist/inc/
efishell.h 207 OUT UINT64 *Position
343 IN UINT64 Position
efiprot.h 373 IN UINT64 Position
380 OUT UINT64 *Position
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_segmented_array.h 156 // segment's Data location to get the element in the position of Offset.
377 // In-place construct at Position.
409 // In-place construct at Position.
426 auto Position = reinterpret_cast<T *>(AlignedOffset);
427 return *reinterpret_cast<T *>(Position);
  /src/sys/external/bsd/acpica/dist/include/platform/
acefiex.h 384 UINT64 Position);
390 UINT64 *Position);
  /src/share/mk/
bsd.sys.mk 261 # Position Independent Executable flags

Completed in 31 milliseconds