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

<<11121314151617181920>>

  /external/chromium_org/v8/src/ia32/
disasm-ia32.cc 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
335 static void get_modrm(byte data, int* mod, int* regop, int* rm) {
336 *mod = (data >> 6) & 3;
337 *regop = (data & 0x38) >> 3;
338 *rm = data & 7;
342 static void get_sib(byte data, int* scale, int* index, int* base) {
343 *scale = (data >> 6) & 3;
344 *index = (data >> 3) & 7;
345 *base = data & 7;
354 int PrintOperands(const char* mnem, OperandOrder op_order, byte* data);
884 byte* data = instr; local
    [all...]
  /frameworks/av/camera/
ICameraRecordingProxy.cpp 46 Parcel data, reply; local
47 data.writeInterfaceToken(ICameraRecordingProxy::getInterfaceDescriptor());
48 data.writeStrongBinder(listener->asBinder());
49 remote()->transact(START_RECORDING, data, &reply);
56 Parcel data, reply; local
57 data.writeInterfaceToken(ICameraRecordingProxy::getInterfaceDescriptor());
58 remote()->transact(STOP_RECORDING, data, &reply);
64 Parcel data, reply; local
65 data.writeInterfaceToken(ICameraRecordingProxy::getInterfaceDescriptor());
66 data.writeStrongBinder(mem->asBinder())
    [all...]
IProCameraUser.cpp 58 Parcel data, reply; local
59 data.writeInterfaceToken(IProCameraUser::getInterfaceDescriptor());
60 remote()->transact(DISCONNECT, data, &reply);
66 Parcel data, reply; local
67 data.writeInterfaceToken(IProCameraUser::getInterfaceDescriptor());
68 data.writeStrongBinder(cameraClient->asBinder());
69 remote()->transact(CONNECT, data, &reply);
77 Parcel data, reply; local
78 data.writeInterfaceToken(IProCameraUser::getInterfaceDescriptor());
79 remote()->transact(EXCLUSIVE_TRY_LOCK, data, &reply)
84 Parcel data, reply; local
92 Parcel data, reply; local
100 Parcel data, reply; local
109 Parcel data, reply; local
124 Parcel data, reply; local
134 Parcel data, reply; local
147 Parcel data, reply; local
170 Parcel data, reply; local
181 Parcel data, reply; local
    [all...]
ICameraClient.cpp 45 Parcel data, reply; local
46 data.writeInterfaceToken(ICameraClient::getInterfaceDescriptor());
47 data.writeInt32(msgType);
48 data.writeInt32(ext1);
49 data.writeInt32(ext2);
50 remote()->transact(NOTIFY_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
53 // generic data callback from camera service to app with image data
58 Parcel data, reply; local
59 data.writeInterfaceToken(ICameraClient::getInterfaceDescriptor())
73 Parcel data, reply; local
    [all...]
  /frameworks/av/media/libmedia/
IAudioRecord.cpp 47 Parcel data, reply; local
49 data.writeInterfaceToken(IAudioRecord::getInterfaceDescriptor());
50 status_t status = remote()->transact(GET_CBLK, data, &reply);
59 Parcel data, reply; local
60 data.writeInterfaceToken(IAudioRecord::getInterfaceDescriptor());
61 data.writeInt32(event);
62 data.writeInt32(triggerSession);
63 status_t status = remote()->transact(START, data, &reply);
74 Parcel data, reply; local
75 data.writeInterfaceToken(IAudioRecord::getInterfaceDescriptor())
    [all...]
IMediaLogService.cpp 43 Parcel data, reply; local
44 data.writeInterfaceToken(IMediaLogService::getInterfaceDescriptor());
45 data.writeStrongBinder(shared->asBinder());
46 data.writeInt32((int32_t) size);
47 data.writeCString(name);
48 status_t status = remote()->transact(REGISTER_WRITER, data, &reply);
53 Parcel data, reply; local
54 data.writeInterfaceToken(IMediaLogService::getInterfaceDescriptor());
55 data.writeStrongBinder(shared->asBinder());
56 status_t status = remote()->transact(UNREGISTER_WRITER, data, &reply)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_eke.c 59 static void eap_eke_state(struct eap_eke_data *data, int state)
62 eap_eke_state_txt(data->state),
64 data->state = state;
68 static void eap_eke_fail(struct eap_eke_data *data, u32 code)
71 data->failure_code = code;
72 eap_eke_state(data, FAILURE_REPORT);
78 struct eap_eke_data *data; local
81 data = os_zalloc(sizeof(*data));
82 if (data == NULL
103 struct eap_eke_data *data = priv; local
363 struct eap_eke_data *data = priv; local
386 struct eap_eke_data *data = priv; local
687 struct eap_eke_data *data = priv; local
721 struct eap_eke_data *data = priv; local
728 struct eap_eke_data *data = priv; local
746 struct eap_eke_data *data = priv; local
764 struct eap_eke_data *data = priv; local
    [all...]
ikev2.c 17 static int ikev2_process_idr(struct ikev2_initiator_data *data,
21 void ikev2_initiator_deinit(struct ikev2_initiator_data *data)
23 ikev2_free_keys(&data->keys);
24 wpabuf_free(data->r_dh_public);
25 wpabuf_free(data->i_dh_private);
26 os_free(data->IDi);
27 os_free(data->IDr);
28 os_free(data->shared_secret);
29 wpabuf_free(data->i_sign_msg);
30 wpabuf_free(data->r_sign_msg)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserList.py 7 self.data = []
10 if type(initlist) == type(self.data):
11 self.data[:] = initlist
13 self.data[:] = initlist.data[:]
15 self.data = list(initlist)
16 def __repr__(self): return repr(self.data)
17 def __lt__(self, other): return self.data < self.__cast(other)
18 def __le__(self, other): return self.data <= self.__cast(other)
19 def __eq__(self, other): return self.data == self.__cast(other
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserList.py 7 self.data = []
10 if type(initlist) == type(self.data):
11 self.data[:] = initlist
13 self.data[:] = initlist.data[:]
15 self.data = list(initlist)
16 def __repr__(self): return repr(self.data)
17 def __lt__(self, other): return self.data < self.__cast(other)
18 def __le__(self, other): return self.data <= self.__cast(other)
19 def __eq__(self, other): return self.data == self.__cast(other
    [all...]
  /external/chromium_org/content/renderer/pepper/
url_request_info_util.cc 84 // Checks that the request data is valid. Returns false on failure. Note that
87 bool ValidateURLRequestData(const ppapi::URLRequestInfoData& data) {
88 if (data.prefetch_buffer_lower_threshold < 0 ||
89 data.prefetch_buffer_upper_threshold < 0 ||
90 data.prefetch_buffer_upper_threshold <=
91 data.prefetch_buffer_lower_threshold) {
97 // Ensures that the file_ref members of the given request info data are
99 bool EnsureFileRefObjectsPopulated(ppapi::URLRequestInfoData* data) {
102 for (size_t i = 0; i < data->body.size(); ++i) {
103 URLRequestInfoData::BodyItem& item = data->body[i]
    [all...]
  /external/chromium/net/tools/fetch/
http_session.cc 20 // Generate a 10KB sequence of data.
21 static std::string data; local
22 if (data.length() == 0) {
23 while (data.length() < (10 * 1024))
24 data += 'a' + (rand() % 26);
31 response_info.content_length = data.length();
33 connection->Respond(&response_info, data);
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/page_cycler_dep/
setup_test_links.sh 15 if [ ! -e /usr/local/autotest/deps/chrome_test/test_src/data ]; then
16 ln -sf /usr/local/autotest/deps/page_cycler_dep/test_src/data \
17 /usr/local/autotest/deps/chrome_test/test_src/data
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/perf_data_dep/
setup_test_links.sh 15 if [ ! -e /usr/local/autotest/deps/chrome_test/test_src/data ]; then
16 ln -sf /usr/local/autotest/deps/telemetry_dep/test_src/data \
17 /usr/local/autotest/deps/chrome_test/test_src/data
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/telemetry_dep/
setup_test_links.sh 15 if [ ! -e /usr/local/autotest/deps/chrome_test/test_src/data ]; then
16 ln -sf /usr/local/autotest/deps/telemetry_dep/test_src/data \
17 /usr/local/autotest/deps/chrome_test/test_src/data
  /external/chromium_org/native_client_sdk/src/libraries/sdk_util/
thread_pool.h 18 typedef void (*WorkFunction)(int task_index, void* data);
28 void Dispatch(int num_tasks, WorkFunction work, void* data);
33 void Setup(int counter, WorkFunction work, void* data);
34 void DispatchMany(int num_tasks, WorkFunction work, void* data);
35 void DispatchHere(int num_tasks, WorkFunction work, void* data);
37 static void* WorkerThreadEntry(void* data);
  /external/chromium_org/net/quic/
quic_data_writer_test.cc 22 char* data = writer.take(); local
24 EXPECT_EQ(1, data[0]);
25 EXPECT_EQ(2, data[1]);
26 EXPECT_EQ(3, data[2]);
27 EXPECT_EQ(4, data[3]);
29 delete[] data;
  /external/chromium_org/net/tools/fetch/
http_session.cc 19 // Generate a 10KB sequence of data.
20 CR_DEFINE_STATIC_LOCAL(std::string, data, ());
21 if (data.length() == 0) {
22 while (data.length() < (10 * 1024))
23 data += 'a' + (rand() % 26);
30 response_info.content_length = data.length();
32 connection->Respond(&response_info, data);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CDATASection.cpp 29 inline CDATASection::CDATASection(Document* document, const String& data)
30 : Text(document, data, CreateText)
35 PassRefPtr<CDATASection> CDATASection::create(Document* document, const String& data)
37 return adoptRef(new CDATASection(document, data));
55 PassRefPtr<Text> CDATASection::cloneWithData(const String& data)
57 return create(document(), data);
StringCallback.cpp 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43 static PassOwnPtr<DispatchCallbackTask> create(PassRefPtr<StringCallback> callback, const String& data)
45 return adoptPtr(new DispatchCallbackTask(callback, data));
54 DispatchCallbackTask(PassRefPtr<StringCallback> callback, const String& data)
56 , m_data(data)
66 void StringCallback::scheduleCallback(ScriptExecutionContext* context, const String& data)
68 context->postTask(DispatchCallbackTask::create(this, data));
  /external/chromium_org/third_party/lzma_sdk/
7zBuf.c 10 p->data = 0;
19 p->data = 0;
22 p->data = (Byte *)alloc->Alloc(alloc, size);
23 if (p->data != 0)
33 alloc->Free(alloc, p->data);
34 p->data = 0;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfglobext.asm 4 [global hashtable2:data]
5 [global hashtable:data (hashtable.end-hashtable)]
11 [section .data]
  /external/compiler-rt/lib/tsan/lit_tests/
mop_with_offset.cc 21 int *data = new int(42); local
22 fprintf(stderr, "ptr1=%p\n", data);
23 fprintf(stderr, "ptr2=%p\n", (char*)data + 2);
25 pthread_create(&t[0], NULL, Thread1, data);
26 pthread_create(&t[1], NULL, Thread2, data);
29 delete data;
34 // CHECK: WARNING: ThreadSanitizer: data race
mop_with_offset2.cc 21 int *data = new int(42); local
22 fprintf(stderr, "ptr1=%p\n", data);
23 fprintf(stderr, "ptr2=%p\n", (char*)data + 2);
25 pthread_create(&t[0], NULL, Thread1, data);
26 pthread_create(&t[1], NULL, Thread2, data);
29 delete data;
34 // CHECK: WARNING: ThreadSanitizer: data race
  /external/libvorbis/test/
util.c 30 gen_windowed_sine (float *data, int len, float maximum)
33 memset (data, 0, len * sizeof (float)) ;
38 { data [k] = sin (2.0 * k * M_PI * 1.0 / 32.0 + 0.4) ;
41 data [k] *= maximum * (0.5 - 0.5 * cos (2.0 * M_PI * k / ((len) - 1))) ;
48 set_data_in (float * data, unsigned len, float value)
52 data [k] = value ;

Completed in 574 milliseconds

<<11121314151617181920>>