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 196 * Position - Byte position (0-3)
212 UINT32 Position)
219 /* Allow a '!' in the last position */
221 if (Character == '!' && Position == 3)
uthex.c 172 * Position - bit position of the digit within the
184 UINT32 Position)
188 AcpiUtShortShiftRight (Integer, Position, &Index);
  /src/sys/external/bsd/acpica/dist/common/
adfile.c 308 char *Position;
324 Position = strrchr (NewFilename, '.');
326 if (Position && (Position > DirectoryPosition))
330 Position++;
331 *Position = 0;
332 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 185 * CurrentPosition - Position on current line
189 * RETURN: Line position after field is written
202 UINT32 Position;
210 Position = CurrentPosition;
212 if (Position == 0)
215 Position = Indent;
222 Position += TokenLength;
226 if (Position > MaxPosition)
229 Position = TokenLength;
241 Position += TokenLength
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
cvcompiler.c 259 * retain it's position for stylistic reasons. If it doesn't,
496 char *Position;
513 Position = strrchr (NewFilename, '.');
515 if (Position && (Position > DirectoryPosition))
519 Position++;
520 *Position = 0;
521 strcat (Position, FILE_SUFFIX_DISASSEMBLY);
aslresource.c 589 * Position - Bit position within the flag byte
605 UINT8 Position,
613 *Flags |= (DefaultBit << Position);
619 *Flags |= (((UINT8) Op->Asl.Value.Integer) << Position);
628 UINT8 Position,
636 *Flags |= (DefaultBit << Position);
642 *Flags |= (((UINT16) Op->Asl.Value.Integer) << Position);
aslcompiler.h 1407 UINT8 Position,
1414 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 438 UINT64 Position;
470 Position = (UINT64) Info->FieldBitPosition +
473 if (Position > ACPI_UINT32_MAX)
480 Info->FieldBitPosition = (UINT32) Position;
595 /* Keep track of bit position for the next field */
597 Position = (UINT64) Info->FieldBitPosition +
600 if (Position > ACPI_UINT32_MAX)
  /src/sys/external/bsd/acpica/dist/include/
acmacros.h 445 * MASK_BITS_ABOVE creates a mask starting AT the position and above
446 * MASK_BITS_BELOW creates a mask starting one bit BELOW the position
452 #define ACPI_MASK_BITS_ABOVE(position) (~((ACPI_UINT64_MAX) << ((UINT32) (position))))
453 #define ACPI_MASK_BITS_BELOW(position) ((ACPI_UINT64_MAX) << ((UINT32) (position)))
476 #define ACPI_GET_BITS(SourcePtr, Position, Mask) \
477 ((*(SourcePtr) >> (Position)) & (Mask))
479 #define ACPI_SET_BITS(TargetPtr, Position, Mask, Value) \
480 (*(TargetPtr) |= (((Value) & (Mask)) << (Position)))
    [all...]
acutils.h 313 UINT32 Position);
474 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 492 UINT64 Position);
498 UINT64 *Position);
  /src/share/mk/
bsd.sys.mk 260 # Position Independent Executable flags

Completed in 229 milliseconds