HomeSort by relevance Sort by last modified time
    Searched refs:Length (Results 1 - 25 of 3131) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/security/util/
Length.java 29 * The Length interface defines the length of an object
31 public interface Length {
34 * Gets the length of this object
37 * the length should be measured in bits.
39 * @return the length of this object
42 public int length(); method in interface:Length
  /external/clang/test/CodeGenCXX/
2012-03-16-StoreAlign.cpp 4 struct Length {
5 Length(double v) {
9 bool operator==(const Length& o) const {
12 bool operator!=(const Length& o) const { return !(*this == o); }
22 static Length inchLength(double inch);
23 static bool getPageSizeFromName(const Length &A) {
24 static const Length legalWidth = inchLength(8.5);
30 // CHECK: @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth = linkonce_odr global %struct.Length zeroinitializer, align 4
31 // CHECK: store float %{{.*}}, float* getelementptr inbounds (%struct.Length, %struct.Length* @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth, i32 0, i32 0), align
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/
CopyMemWrapper.c 27 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
30 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
31 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
35 @param Length Number of bytes to copy from SourceBuffer to DestinationBuffer.
45 IN UINTN Length
48 if (Length == 0) {
51 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
52 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
57 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
ScanMem8Wrapper.c 28 This function searches target the buffer specified by Buffer and Length from the lowest
31 then NULL is returned. If Length is 0, then NULL is returned.
32 If Length > 0 and Buffer is NULL, then ASSERT().
33 If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT().
36 @param Length Number of bytes in Buffer to scan.
46 IN UINTN Length,
50 if (Length == 0) {
54 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
56 return (VOID*)InternalMemScanMem8 (Buffer, Length, Value);
SetMemWrapper.c 27 This function fills Length bytes of Buffer with Value, and returns Buffer.
28 If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT().
31 @param Length Number of bytes to set.
41 IN UINTN Length,
45 if (Length == 0) {
49 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
51 return InternalMemSetMem (Buffer, Length, Value);
ZeroMemWrapper.c 27 This function fills Length bytes of Buffer with zeros, and returns Buffer.
28 If Length > 0 and Buffer is NULL, then ASSERT().
29 If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT().
32 @param Length Number of bytes in Buffer to fill with zeros.
41 IN UINTN Length
44 ASSERT (!(Buffer == NULL && Length > 0));
45 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
46 return InternalMemZeroMem (Buffer, Length);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLib/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
IsZeroBufferWrapper.c 34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
38 @param Length The size of the buffer (in bytes) to be checked.
48 IN UINTN Length
51 ASSERT (!(Buffer == NULL && Length > 0));
52 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
53 return InternalMemIsZeroBuffer (Buffer, Length);
ZeroMemWrapper.c 31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 if (Length == 0) {
54 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
55 return InternalMemZeroMem (Buffer, Length);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibMmx/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
IsZeroBufferWrapper.c 34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
38 @param Length The size of the buffer (in bytes) to be checked.
48 IN UINTN Length
51 ASSERT (!(Buffer == NULL && Length > 0));
52 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
53 return InternalMemIsZeroBuffer (Buffer, Length);
ZeroMemWrapper.c 31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 if (Length == 0) {
54 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
55 return InternalMemZeroMem (Buffer, Length);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
IsZeroBufferWrapper.c 34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
38 @param Length The size of the buffer (in bytes) to be checked.
48 IN UINTN Length
51 ASSERT (!(Buffer == NULL && Length > 0));
52 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
53 return InternalMemIsZeroBuffer (Buffer, Length);
ZeroMemWrapper.c 31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 if (Length == 0) {
54 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
55 return InternalMemZeroMem (Buffer, Length);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptPei/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
IsZeroBufferWrapper.c 34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
38 @param Length The size of the buffer (in bytes) to be checked.
48 IN UINTN Length
51 ASSERT (!(Buffer == NULL && Length > 0));
52 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
53 return InternalMemIsZeroBuffer (Buffer, Length);
ZeroMemWrapper.c 31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 if (Length == 0) {
54 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
55 return InternalMemZeroMem (Buffer, Length);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibRepStr/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
IsZeroBufferWrapper.c 34 If Length > 0 and Buffer is NULL, then ASSERT().
35 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
38 @param Length The size of the buffer (in bytes) to be checked.
48 IN UINTN Length
51 ASSERT (!(Buffer == NULL && Length > 0));
52 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
53 return InternalMemIsZeroBuffer (Buffer, Length);
ZeroMemWrapper.c 31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
37 @param Length The number of bytes in Buffer to fill with zeros.
46 IN UINTN Length
49 if (Length == 0) {
54 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
55 return InternalMemZeroMem (Buffer, Length);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryLib/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryLib/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
50 IN UINTN Length
53 if (Length == 0) {
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ipf/
FlushCacheRange.c 22 Flushes the cache lines specified by Address and Length. If Address is not aligned
24 If Address + Length is not aligned on a cache line boundary, then the entire cache
25 line containing Address + Length - 1 is flushed. This function may choose to flush
27 Length is 0, the no cache lines are flushed. Address is returned.
30 If Length is greater than (MAX_ADDRESS - Address + 1), then ASSERT().
37 @param Length The number of bytes to invalidate from the instruction cache.
46 IN UINTN Length
49 ASSERT (Length <= MAX_ADDRESS - (UINTN)Address + 1);
50 return InternalFlushCacheRange (Address, Length);

Completed in 183 milliseconds

1 2 3 4 5 6 7 8 91011>>