HomeSort by relevance Sort by last modified time
    Searched refs:Data (Results 426 - 450 of 2499) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-tic6x/
attr-pid-22.d 11 Tag_ABI_PID: Data addressing position-independent, GOT far from DP
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/MonoStatusCode/Library/Pei/Include/
MemoryStatusCodeLib.h 32 // Publicly exported data
55 IN EFI_STATUS_CODE_DATA * Data OPTIONAL
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/AuthVariableLibNull/
AuthVariableLibNull.c 50 @param[in] Data Data pointer.
51 @param[in] DataSize Size of Data.
54 @retval EFI_SUCCESS The firmware has successfully stored the variable and its data as
71 IN VOID *Data,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Config2Impl.c 26 @param[in] Context Pointer to the IP4 config2 instance data.
182 Read the configuration data from variable storage according to the VarName and
183 gEfiIp4Config2ProtocolGuid. It checks the integrity of variable data. If the
184 data is corrupted, it clears the variable data to ZERO. Othewise, it outputs the
185 configuration data to IP4_CONFIG2_INSTANCE.
188 @param[in, out] Instance The pointer to the IP4 config2 instance data.
192 @retval EFI_SUCCESS The configuration data was retrieved successfully.
207 CHAR8 *Data;
269 // Perhaps a corrupted data record...
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
StatusCode.h 41 @param Data This optional parameter may be used to pass additional data.
54 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedTransliterator.java 281 private final Data data; field in class:RuleBasedTransliterator
304 // data = (Data)parser.dataVector.get(0);
305 // setMaximumContextLength(data.ruleSet.getMaximumContextLength());
319 RuleBasedTransliterator(String ID, Data data, UnicodeFilter filter) {
321 this.data = data;
322 setMaximumContextLength(data.ruleSet.getMaximumContextLength())
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
RuleBasedTransliterator.java 279 private final Data data; field in class:RuleBasedTransliterator
302 // data = (Data)parser.dataVector.get(0);
303 // setMaximumContextLength(data.ruleSet.getMaximumContextLength());
317 RuleBasedTransliterator(String ID, Data data, UnicodeFilter filter) {
319 this.data = data;
320 setMaximumContextLength(data.ruleSet.getMaximumContextLength())
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
AbstractData.java 17 package com.google.clearsilver.jsilver.data;
24 * This class is meant to hold implementation common to different instances of Data interface.
26 public abstract class AbstractData implements Data {
52 Data child = getChild(path);
68 Data child = getChild(path);
109 Data child = createChild(path);
Parser.java 17 package com.google.clearsilver.jsilver.data;
25 * Parses data in HierachicalDataFormat (HDF), generating callbacks for data encountered in the
45 * Reads in a stream of characters and parses data from it, putting it into the given Data object.
47 * @param reader Reader used to read in the formatted data.
48 * @param output Data object that the read data structure will be dumped into.
53 * @param ignoreAttributes whether to store parsed HDF attributes in the Data object or not.
56 void parse(Reader reader, Data output, ErrorHandler errorHandler, ResourceLoader resourceLoader
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamInterface.h 1 //===- StreamInterface.h - Base interface for a stream of data --*- C++ -*-===//
20 /// StreamInterface abstracts the notion of a data stream. This way, an
33 // stream, without copying any data.
38 // any data.
45 virtual Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) const = 0;
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
IPDBFile.h 39 ArrayRef<uint8_t> Data) const = 0;
  /external/protobuf/src/google/protobuf/stubs/
hash.h 1 // Protocol Buffers - Google's data interchange format
26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
211 template <typename Key, typename Data,
214 typename Alloc = std::allocator< std::pair<const Key, Data> > >
215 class hash_map : public std::map<Key, Data, HashFcn, Alloc> {
216 typedef std::map<Key, Data, HashFcn, Alloc> BaseClass;
270 template <typename Key, typename Data,
273 typename Alloc = std::allocator< std::pair<const Key, Data> > >
276 Key, Data, InternalHashCompare<Key, HashFcn, EqualKey>, Alloc> {
278 Key, Data, InternalHashCompare<Key, HashFcn, EqualKey>, Alloc> BaseClass
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
StringRef.cpp 35 unsigned char LHC = ascii_tolower(Data[I]);
36 unsigned char RHC = ascii_tolower(RHS.Data[I]);
50 if (ascii_isdigit(Data[I]) && ascii_isdigit(RHS.Data[I])) {
55 bool ld = J < Length && ascii_isdigit(Data[J]);
56 bool rd = J < RHS.Length && ascii_isdigit(RHS.Data[J]);
63 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I))
69 if (Data[I] != RHS.Data[I]
    [all...]
  /external/testng/src/test/java/test/dataprovider/
DataProviderWithError.java 11 @Test(dataProvider = "Data", invocationCount = 2)
16 @Test(dataProvider = "Data", invocationCount = 2, successPercentage = 10)
21 @DataProvider(name = "Data")
22 public static Object[][] Data() {
  /frameworks/base/media/mca/filterfw/native/core/
native_frame.h 25 // A NativeFrame stores data in a memory buffer (on the heap). It is used for
26 // data processing on the CPU.
34 // Set the frame data and size in bytes. The NativeFrame object takes ownership of the data.
35 // To copy data into an existing frame, use WriteData().
36 bool SetData(uint8_t* data, int size);
38 // Write the specified data of the given size to the frame at the specified offset. The
39 // receiver must be large enough to hold the data.
40 bool WriteData(const uint8_t* data, int offset, int size);
42 // Returns a pointer to the data, or NULL if no data was set
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
hash.h 1 // Protocol Buffers - Google's data interchange format
26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
211 template <typename Key, typename Data,
214 typename Alloc = std::allocator< std::pair<const Key, Data> > >
215 class hash_map : public std::map<Key, Data, HashFcn, Alloc> {
216 typedef std::map<Key, Data, HashFcn, Alloc> BaseClass;
270 template <typename Key, typename Data,
273 typename Alloc = std::allocator< std::pair<const Key, Data> > >
276 Key, Data, InternalHashCompare<Key, HashFcn, EqualKey>, Alloc> {
278 Key, Data, InternalHashCompare<Key, HashFcn, EqualKey>, Alloc> BaseClass
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Hash/
CryptMd4.c 100 Digests the input data and updates MD4 context.
102 This function performs MD4 digest on a data buffer of the specified size.
103 It can be called multiple times to compute the digest of long or discontinuous data streams.
110 @param[in] Data Pointer to the buffer containing the data to be hashed.
111 @param[in] DataSize Size of Data buffer in bytes.
113 @retval TRUE MD4 data digest succeeded.
114 @retval FALSE MD4 data digest failed.
121 IN CONST VOID *Data,
135 if (Data == NULL && DataSize != 0) {
    [all...]
CryptMd5.c 102 Digests the input data and updates MD5 context.
104 This function performs MD5 digest on a data buffer of the specified size.
105 It can be called multiple times to compute the digest of long or discontinuous data streams.
112 @param[in] Data Pointer to the buffer containing the data to be hashed.
113 @param[in] DataSize Size of Data buffer in bytes.
115 @retval TRUE MD5 data digest succeeded.
116 @retval FALSE MD5 data digest failed.
123 IN CONST VOID *Data,
137 if (Data == NULL && (DataSize != 0)) {
    [all...]
CryptSha1.c 101 Digests the input data and updates SHA-1 context.
103 This function performs SHA-1 digest on a data buffer of the specified size.
104 It can be called multiple times to compute the digest of long or discontinuous data streams.
111 @param[in] Data Pointer to the buffer containing the data to be hashed.
112 @param[in] DataSize Size of Data buffer in bytes.
114 @retval TRUE SHA-1 data digest succeeded.
115 @retval FALSE SHA-1 data digest failed.
122 IN CONST VOID *Data,
136 if (Data == NULL && DataSize != 0) {
    [all...]
CryptSha256.c 100 Digests the input data and updates SHA-256 context.
102 This function performs SHA-256 digest on a data buffer of the specified size.
103 It can be called multiple times to compute the digest of long or discontinuous data streams.
110 @param[in] Data Pointer to the buffer containing the data to be hashed.
111 @param[in] DataSize Size of Data buffer in bytes.
113 @retval TRUE SHA-256 data digest succeeded.
114 @retval FALSE SHA-256 data digest failed.
121 IN CONST VOID *Data,
135 if (Data == NULL && DataSize != 0) {
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Hmac/
CryptHmacMd5.c 107 Digests the input data and updates HMAC-MD5 context.
109 This function performs HMAC-MD5 digest on a data buffer of the specified size.
110 It can be called multiple times to compute the digest of long or discontinuous data streams.
117 @param[in] Data Pointer to the buffer containing the data to be digested.
118 @param[in] DataSize Size of Data buffer in bytes.
120 @retval TRUE HMAC-MD5 data digest succeeded.
121 @retval FALSE HMAC-MD5 data digest failed.
128 IN CONST VOID *Data,
142 if (Data == NULL && DataSize != 0) {
    [all...]
CryptHmacSha1.c 107 Digests the input data and updates HMAC-SHA1 context.
109 This function performs HMAC-SHA1 digest on a data buffer of the specified size.
110 It can be called multiple times to compute the digest of long or discontinuous data streams.
117 @param[in] Data Pointer to the buffer containing the data to be digested.
118 @param[in] DataSize Size of Data buffer in bytes.
120 @retval TRUE HMAC-SHA1 data digest succeeded.
121 @retval FALSE HMAC-SHA1 data digest failed.
128 IN CONST VOID *Data,
142 if (Data == NULL && DataSize != 0) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/FormCallback/
FormCallback.h 45 #define SAVE_REQUIRED 4 // Flags setting to signify that after the processing of the callback results - save the NV data
53 VOID *Data; // The data in the form based on the op-code type - this is not a pointer to the data, the data follows immediately
54 // If the OpCode is a OneOf or Numeric type - Data is a UINT16 value
55 // If the OpCode is a String type - Data is a CHAR16[x] type
56 // If the OpCode is a Checkbox type - Data is a UINT8 value
57 // If the OpCode is a NV Access type - Data is a EFI_IFR_NV_DATA structure
66 EFI_IFR_DATA_ENTRY Data[1]; // The in-line Data entries.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Include/
EfiScriptLib.h 80 Buffer - The source buffer from which to write data.
97 IN VOID *Data,
114 Data - A pointer to the data to be OR-ed.
116 DataMask - A pointer to the data mask to be AND-ed with the data read from the register.
152 Buffer - The source buffer from which to write the data.
169 IN VOID *Data,
186 Data - A pointer to the data to be OR-ed.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeIoLibCpuIo/
IoLib.c 68 @return Data read from registers in the EFI CPU I/O space.
79 UINT64 Data;
81 Status = mCpuIo->Io.Read (mCpuIo, Width, Port, 1, &Data);
84 return Data;
91 and Data respectively. Data is returned. If such operations are not supported, then ASSERT().
97 @param Data The value to write to the I/O port.
99 @return The paramter of Data.
107 IN UINT64 Data
112 Status = mCpuIo->Io.Write (mCpuIo, Width, Port, 1, &Data);
    [all...]

Completed in 662 milliseconds

<<11121314151617181920>>