HomeSort by relevance Sort by last modified time
    Searched full:data (Results 101 - 125 of 89596) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/test/tools/llvm-readobj/Inputs/
relocs.obj.elf-mips 
  /external/lzma/CPP/7zip/Common/
StreamUtils.h 8 HRESULT ReadStream(ISequentialInStream *stream, void *data, size_t *size);
9 HRESULT ReadStream_FALSE(ISequentialInStream *stream, void *data, size_t size);
10 HRESULT ReadStream_FAIL(ISequentialInStream *stream, void *data, size_t size);
11 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, size_t size);
  /external/lzma/CPP/7zip/Compress/
BcjCoder.cpp 7 UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
9 return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 1);
12 UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
14 return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 0);
ByteSwap.cpp 18 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
28 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
33 STDMETHODIMP_(UInt32) CByteSwap2::Filter(Byte *data, UInt32 size)
39 Byte b = data[i];
40 data[i] = data[i + 1];
41 data[i + 1] = b;
48 STDMETHODIMP_(UInt32) CByteSwap4::Filter(Byte *data, UInt32 size)
54 Byte b0 = data[i];
55 Byte b1 = data[i + 1];
    [all...]
  /external/sfntly/cpp/src/sfntly/table/
byte_array_table_builder.cc 24 ReadableFontDataPtr data = InternalReadData(); local
25 if (data == NULL) {
27 throw IOException("No font data for the table");
31 return data->ReadByte(index);
35 WritableFontDataPtr data = InternalWriteData(); local
36 if (data == NULL) {
38 throw IOException("No font data for the table");
42 data->WriteByte(index, b);
46 ReadableFontDataPtr data = InternalReadData(); local
47 if (data == NULL)
    [all...]
  /external/valgrind/main/none/tests/s390x/
ecag.stdout.exp-z196 1 L1 topology: separate data and instruction; private
2 L1 cache line size data: 256
4 L1 total cachesize data: 131072
6 L1 set. assoc. data: 8
8 L2 topology: unified data and instruction; private
9 L2 cache line size data: 256
11 L2 total cachesize data: 1572864
13 L2 set. assoc. data: 12
15 L3 topology: unified data and instruction; shared
16 L3 cache line size data: 25
    [all...]
ecag.stdout.exp-zec12 1 L1 topology: separate data and instruction; private
2 L1 cache line size data: 256
4 L1 total cachesize data: 98304
6 L1 set. assoc. data: 6
8 L2 topology: separate data and instruction; private
9 L2 cache line size data: 256
11 L2 total cachesize data: 1048576
13 L2 set. assoc. data: 8
15 L3 topology: unified data and instruction; shared
16 L3 cache line size data: 25
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/mock_data/mock_android/data/
anotherDataFile 1 A simple data file that should *not* be copied to the output jar
dataFile 1 A simple data file that should be copied to the output jar unchanged
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/lib32/
Mcrt1.o 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/
Mcrt1.o 
  /external/wpa_supplicant_8/src/eap_peer/
eap_sim.c 71 static void eap_sim_state(struct eap_sim_data *data, int state)
74 eap_sim_state_txt(data->state),
76 data->state = state;
82 struct eap_sim_data *data; local
85 data = os_zalloc(sizeof(*data));
86 if (data == NULL)
89 if (random_get_bytes(data->nonce_mt, EAP_SIM_NONCE_MT_LEN)) {
90 wpa_printf(MSG_WARNING, "EAP-SIM: Failed to get random data "
92 os_free(data);
149 struct eap_sim_data *data = priv; local
1028 struct eap_sim_data *data = priv; local
1118 struct eap_sim_data *data = priv; local
1125 struct eap_sim_data *data = priv; local
1134 struct eap_sim_data *data = priv; local
1151 struct eap_sim_data *data = priv; local
1169 struct eap_sim_data *data = priv; local
1176 struct eap_sim_data *data = priv; local
1195 struct eap_sim_data *data = priv; local
1218 struct eap_sim_data *data = priv; local
    [all...]
eap_sake.c 56 static void eap_sake_state(struct eap_sake_data *data, int state)
59 eap_sake_state_txt(data->state),
61 data->state = state;
70 struct eap_sake_data *data; local
81 data = os_zalloc(sizeof(*data));
82 if (data == NULL)
84 data->state = IDENTITY;
88 data->peerid = os_malloc(identity_len);
89 if (data->peerid == NULL)
108 struct eap_sake_data *data = priv; local
365 struct eap_sake_data *data = priv; local
432 struct eap_sake_data *data = priv; local
439 struct eap_sake_data *data = priv; local
457 struct eap_sake_data *data = priv; local
479 struct eap_sake_data *data = priv; local
    [all...]
  /external/chromium_org/components/pairing/
message_buffer_unittest.cc 17 io_buffer->data()[0] = 3;
18 io_buffer->data()[1] = 1;
19 io_buffer->data()[2] = 4;
24 char data = 0; local
25 message_buffer.ReadBytes(&data, 1);
26 EXPECT_EQ(data, 3);
28 message_buffer.ReadBytes(&data, 1);
29 EXPECT_EQ(data, 1);
31 message_buffer.ReadBytes(&data, 1);
32 EXPECT_EQ(data, 4)
49 char data[3]; local
72 char data = 0; local
    [all...]
  /external/chromium_org/ios/consumer/base/
supports_user_data.cc 12 // Class that wraps a ios::SupportsUserData::Data object in a
13 // base::SupportsUserData::Data object. The wrapper object takes ownership of
15 class DataAdaptor : public base::SupportsUserData::Data {
17 DataAdaptor(SupportsUserData::Data* data);
20 SupportsUserData::Data* data() { return data_.get(); } function in class:ios::DataAdaptor
23 scoped_ptr<SupportsUserData::Data> data_;
26 DataAdaptor::DataAdaptor(SupportsUserData::Data* data)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
TimelineRecordFactory.cpp 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
47 PassRefPtr<TimelineEvent> TimelineRecordFactory::createGenericRecord(double startTime, int maxCallStackDepth, const String& type, PassRefPtr<JSONObject> data)
49 ASSERT(data.get());
52 .setData(data)
62 PassRefPtr<TimelineEvent> TimelineRecordFactory::createBackgroundRecord(double startTime, const String& threadName, const String& type, PassRefPtr<JSONObject> data)
64 ASSERT(data.get());
67 .setData(data)
75 RefPtr<JSONObject> data = JSONObject::create(); local
76 data->setNumber("usedHeapSizeDelta", usedHeapSizeDelta);
77 return data.release()
82 RefPtr<JSONObject> data = JSONObject::create(); local
91 RefPtr<JSONObject> data = JSONObject::create(); local
98 RefPtr<JSONObject> data = JSONObject::create(); local
105 RefPtr<JSONObject> data = JSONObject::create(); local
114 RefPtr<JSONObject> data = JSONObject::create(); local
122 RefPtr<JSONObject> data = JSONObject::create(); local
129 RefPtr<JSONObject> data = JSONObject::create(); local
137 RefPtr<JSONObject> data = JSONObject::create(); local
144 RefPtr<JSONObject> data = JSONObject::create(); local
151 RefPtr<JSONObject> data = JSONObject::create(); local
160 RefPtr<JSONObject> data = JSONObject::create(); local
169 RefPtr<JSONObject> data = JSONObject::create(); local
179 RefPtr<JSONObject> data = JSONObject::create(); local
187 RefPtr<JSONObject> data = JSONObject::create(); local
196 RefPtr<JSONObject> data = JSONObject::create(); local
203 RefPtr<JSONObject> data = JSONObject::create(); local
210 RefPtr<JSONObject> data = JSONObject::create(); local
217 RefPtr<JSONObject> data = JSONObject::create(); local
224 RefPtr<JSONObject> data = JSONObject::create(); local
231 RefPtr<JSONObject> data = JSONObject::create(); local
252 RefPtr<JSONObject> data = JSONObject::create(); local
287 RefPtr<JSONObject> data = JSONObject::create(); local
314 RefPtr<JSONObject> data = JSONObject::create(); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
inode_io.c 53 int count, void *data);
55 int count, const void *data);
58 int size, const void *data);
60 unsigned long long block, int count, void *data);
62 unsigned long long block, int count, const void *data);
86 struct inode_private_data *data; local
90 &data)))
92 data->magic = EXT2_ET_MAGIC_INODE_IO_CHANNEL;
93 sprintf(data->name, "%u:%d", ino, ino_unique++);
94 data->file = 0
118 struct inode_private_data *prev, *data = NULL; local
177 struct inode_private_data *data; local
198 struct inode_private_data *data; local
212 struct inode_private_data *data; local
238 struct inode_private_data *data; local
264 struct inode_private_data *data; local
283 struct inode_private_data *data; local
    [all...]
test_io.c 69 int count, void *data);
71 int count, const void *data);
73 int count, void *data);
75 int count, const void *data);
134 struct test_private_data *data,
138 FILE *f = data->outfile;
155 struct test_private_data *data; local
158 data = (struct test_private_data *) channel->private_data;
159 f = data->outfile;
193 struct test_private_data *data = NULL local
273 struct test_private_data *data; local
298 struct test_private_data *data; local
323 struct test_private_data *data; local
350 struct test_private_data *data; local
377 struct test_private_data *data; local
404 struct test_private_data *data; local
431 struct test_private_data *data; local
454 struct test_private_data *data; local
474 struct test_private_data *data; local
500 struct test_private_data *data; local
516 struct test_private_data *data; local
    [all...]
  /frameworks/av/media/libmedia/
IMediaPlayer.cpp 74 Parcel data, reply; local
75 data.writeInterfaceToken(IMediaPlayer::getInterfaceDescriptor());
76 remote()->transact(DISCONNECT, data, &reply);
84 Parcel data, reply; local
85 data.writeInterfaceToken(IMediaPlayer::getInterfaceDescriptor());
86 data.writeInt32(httpService != NULL);
88 data.writeStrongBinder(httpService->asBinder());
90 data.writeCString(url);
92 data.writeInt32(0);
95 data.writeInt32(headers->size())
106 Parcel data, reply; local
116 Parcel data, reply; local
126 Parcel data, reply; local
136 Parcel data, reply; local
144 Parcel data, reply; local
152 Parcel data, reply; local
160 Parcel data, reply; local
169 Parcel data, reply; local
177 Parcel data, reply; local
186 Parcel data, reply; local
195 Parcel data, reply; local
204 Parcel data, reply; local
212 Parcel data, reply; local
221 Parcel data, reply; local
230 Parcel data, reply; local
267 Parcel data, reply; local
276 Parcel data, reply; local
285 Parcel data, reply; local
297 Parcel data; local
305 Parcel data, reply; local
324 Parcel data, reply; local
334 Parcel data, reply; local
    [all...]
ICrypto.cpp 45 Parcel data, reply; local
46 data.writeInterfaceToken(ICrypto::getInterfaceDescriptor());
47 remote()->transact(INIT_CHECK, data, &reply);
53 Parcel data, reply; local
54 data.writeInterfaceToken(ICrypto::getInterfaceDescriptor());
55 data.write(uuid, 16);
56 remote()->transact(IS_CRYPTO_SUPPORTED, data, &reply);
63 Parcel data, reply; local
64 data.writeInterfaceToken(ICrypto::getInterfaceDescriptor());
65 data.write(uuid, 16)
78 Parcel data, reply; local
87 Parcel data, reply; local
104 Parcel data, reply; local
155 Parcel data, reply; local
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-dup-fwd-decl.cpp 6 Test () : reserved (new data()) {}
14 struct data { struct in class:Test
17 data* reserved;
23 // CHECK: ; [ DW_TAG_structure_type ] [data]
24 // CHECK-NOT: ; [ DW_TAG_structure_type ] [data]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowNdefRecord.java 13 private byte[] data; field in class:ShadowNdefRecord
15 public void __constructor__(byte[] data) {
16 this.data = data;
21 return data;
  /external/chromium_org/media/formats/mp4/
aac_unittest.cc 15 bool Parse(const std::vector<uint8>& data) {
16 return aac_.Parse(data, LogCB());
24 std::vector<uint8> data; local
26 data.assign(buffer, buffer + sizeof(buffer));
28 EXPECT_TRUE(Parse(data));
35 std::vector<uint8> data; local
37 data.assign(buffer, buffer + sizeof(buffer));
39 EXPECT_TRUE(Parse(data));
51 std::vector<uint8> data; local
53 data.assign(buffer, buffer + sizeof(buffer))
69 std::vector<uint8> data; local
86 std::vector<uint8> data; local
96 std::vector<uint8> data; local
106 std::vector<uint8> data; local
121 std::vector<uint8> data; local
134 std::vector<uint8> data; local
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
transform.rs 29 static void debugTransform(SgTransform *data, const ParentData *parent) {
30 rsDebug("****** <Transform> ******", (int)data);
31 printName(data->name);
32 rsDebug("isDirty", data->isDirty);
34 rsDebug("child ", rsIsObject(data->children));
37 if (data->isDirty && rsIsObject(data->components)) {
38 uint32_t numComponenets = rsAllocationGetDimX(data->components);
41 comp = (const SgTransformComponent *)rsGetElementAt(data->components, i);
53 rsDebug("timestamp", data->timestamp)
    [all...]
  /frameworks/av/camera/
ICamera.cpp 66 Parcel data, reply; local
67 data.writeInterfaceToken(ICamera::getInterfaceDescriptor());
68 remote()->transact(DISCONNECT, data, &reply);
76 Parcel data, reply; local
77 data.writeInterfaceToken(ICamera::getInterfaceDescriptor());
79 data.writeStrongBinder(b);
80 remote()->transact(SET_PREVIEW_TARGET, data, &reply);
89 Parcel data, reply; local
90 data.writeInterfaceToken(ICamera::getInterfaceDescriptor());
91 data.writeInt32(flag)
99 Parcel data, reply; local
111 Parcel data, reply; local
121 Parcel data, reply; local
131 Parcel data, reply; local
140 Parcel data, reply; local
148 Parcel data, reply; local
157 Parcel data, reply; local
168 Parcel data, reply; local
178 Parcel data, reply; local
188 Parcel data, reply; local
199 Parcel data, reply; local
210 Parcel data, reply; local
222 Parcel data, reply; local
233 Parcel data, reply; local
241 Parcel data, reply; local
251 Parcel data, reply; local
259 Parcel data, reply; local
266 Parcel data, reply; local
    [all...]

Completed in 3786 milliseconds

1 2 3 45 6 7 8 91011>>