HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 251 - 275 of 10179) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibRepStr/
ScanMem64Wrapper.c 29 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
33 address to the highest address for a 64-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT64 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem16Wrapper.c 28 Fills a target buffer with a 16-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 16-bit value specified by
31 Value, and returns Buffer. Value is repeated every 16-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT16 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem32Wrapper.c 28 Fills a target buffer with a 32-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 32-bit value specified by
31 Value, and returns Buffer. Value is repeated every 32-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT32 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem32 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem64Wrapper.c 28 Fills a target buffer with a 64-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 64-bit value specified by
31 Value, and returns Buffer. Value is repeated every 64-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT64 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/
ScanMem16Wrapper.c 29 Scans a target buffer for a 16-bit value, and returns a pointer to the matching 16-bit value
33 address to the highest address for a 16-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT16 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem16 (Buffer, Length / sizeof (Value), Value);
    [all...]
ScanMem32Wrapper.c 28 Scans a target buffer for a 32-bit value, and returns a pointer to the matching 32-bit value
32 address to the highest address for a 32-bit value that matches Value. If a match is found,
43 @param Value The value to search for in the target buffer.
53 IN UINT32 Value
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
65 return (VOID*)InternalMemScanMem32 (Buffer, Length / sizeof (Value), Value);
    [all...]
ScanMem64Wrapper.c 29 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
33 address to the highest address for a 64-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT64 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem16Wrapper.c 28 Fills a target buffer with a 16-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 16-bit value specified by
31 Value, and returns Buffer. Value is repeated every 16-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT16 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem32Wrapper.c 28 Fills a target buffer with a 32-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 32-bit value specified by
31 Value, and returns Buffer. Value is repeated every 32-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT32 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem32 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem64Wrapper.c 28 Fills a target buffer with a 64-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 64-bit value specified by
31 Value, and returns Buffer. Value is repeated every 64-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT64 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryLib/
ScanMem16Wrapper.c 29 Scans a target buffer for a 16-bit value, and returns a pointer to the matching 16-bit value
33 address to the highest address for a 16-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT16 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem16 (Buffer, Length / sizeof (Value), Value);
    [all...]
ScanMem32Wrapper.c 28 Scans a target buffer for a 32-bit value, and returns a pointer to the matching 32-bit value
32 address to the highest address for a 32-bit value that matches Value. If a match is found,
43 @param Value The value to search for in the target buffer.
53 IN UINT32 Value
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
65 return (VOID*)InternalMemScanMem32 (Buffer, Length / sizeof (Value), Value);
    [all...]
ScanMem64Wrapper.c 29 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
33 address to the highest address for a 64-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT64 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem16Wrapper.c 28 Fills a target buffer with a 16-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 16-bit value specified by
31 Value, and returns Buffer. Value is repeated every 16-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT16 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem32Wrapper.c 28 Fills a target buffer with a 32-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 32-bit value specified by
31 Value, and returns Buffer. Value is repeated every 32-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT32 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem32 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem64Wrapper.c 28 Fills a target buffer with a 64-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 64-bit value specified by
31 Value, and returns Buffer. Value is repeated every 64-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT64 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryLib/
ScanMem16Wrapper.c 29 Scans a target buffer for a 16-bit value, and returns a pointer to the matching 16-bit value
33 address to the highest address for a 16-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT16 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem16 (Buffer, Length / sizeof (Value), Value);
    [all...]
ScanMem32Wrapper.c 28 Scans a target buffer for a 32-bit value, and returns a pointer to the matching 32-bit value
32 address to the highest address for a 32-bit value that matches Value. If a match is found,
43 @param Value The value to search for in the target buffer.
53 IN UINT32 Value
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
65 return (VOID*)InternalMemScanMem32 (Buffer, Length / sizeof (Value), Value);
    [all...]
ScanMem64Wrapper.c 29 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
33 address to the highest address for a 64-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT64 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem16Wrapper.c 28 Fills a target buffer with a 16-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 16-bit value specified by
31 Value, and returns Buffer. Value is repeated every 16-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT16 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem32Wrapper.c 28 Fills a target buffer with a 32-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 32-bit value specified by
31 Value, and returns Buffer. Value is repeated every 32-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT32 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem32 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem64Wrapper.c 28 Fills a target buffer with a 64-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 64-bit value specified by
31 Value, and returns Buffer. Value is repeated every 64-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT64 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
ExistsFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(value.exists(), value);
NotFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(!value.asBoolean(), value);
NumericFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
24 * #X (numeric). Forces a value to a number.
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(value.asNumber(), value);

Completed in 589 milliseconds

<<11121314151617181920>>