HomeSort by relevance Sort by last modified time
    Searched refs:data (Results 201 - 225 of 13249) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/test/MC/MachO/
zerofill-1.s 1 // RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s
8 .data
  /external/quake/quake/src/WinQuake/
crc.h 23 void CRC_ProcessByte(unsigned short *crcvalue, byte data);
  /external/srec/portable/include/
pcrc.h 35 * Computes the CRC-encoding of the block of data.
37 * @param data The data on which to compute the CRC
38 * @param size the size of the data.
39 * @return the CRC of the data.
41 PORTABLE_API unsigned int pcrcComputeData(const void *data, unsigned int size);
63 * @param data datum to append to the crc
64 * @param size the size of the data.
68 const void * data,
  /external/srec/shared/include/
ESR_SessionTypeListener.h 51 * @param data User-data passed to listener.
54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data);
60 * Associates a ESR_SessionTypeListener with user-data.
69 * User-data to pass to listener.
71 void* data; member in struct:ESR_SessionTypeListenerPair_t
  /external/srec/srec/ca/
ann_api.c 54 hAnnotation->data = allocate_annotation();
58 hAnnotation->data->snr = 0;
79 free_annotation(hAnnotation->data);
99 annotation_delete_segment_info(hAnnotation->data);
126 seg_cnt = annotation_from_results(hAnnotation->data, &hRecog->rec);
128 if (hAnnotation->data->numWords > 0)
130 annotation_decorate_labels(hAnnotation->data, hAnnotation->label);
134 return (hAnnotation->data->numWords);
157 annotation_from_voicing(hAnnotation->data, &hUtterance->data, hPattern->data.prep)
    [all...]
  /external/webkit/Source/WebCore/dom/
StringCallback.idl 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 boolean handleEvent(in DOMString data);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtMaemoWebPopup.h 36 Maemo5Popup(const QWebSelectData& data) : m_data(data) {}
58 virtual void show(const QWebSelectData& data);
68 Maemo5Popup* createPopup(const QWebSelectData& data);
69 Maemo5Popup* createSingleSelectionPopup(const QWebSelectData& data);
70 Maemo5Popup* createMultipleSelectionPopup(const QWebSelectData& data);
77 Maemo5SingleSelectionPopup(const QWebSelectData& data);
84 Maemo5MultipleSelectionPopup(const QWebSelectData& data);
  /frameworks/av/services/audioflinger/
ISchedulingPolicyService.cpp 42 Parcel data, reply; local
43 data.writeInterfaceToken(ISchedulingPolicyService::getInterfaceDescriptor());
44 data.writeInt32(pid);
45 data.writeInt32(tid);
46 data.writeInt32(prio);
47 remote()->transact(REQUEST_PRIORITY_TRANSACTION, data, &reply);
59 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
67 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/base/core/java/android/app/backup/
BackupHelper.java 28 * is responsible only for handling its own data, and will not see entities
41 * application's data directory need to be backed up, write them to
42 * <code>data</code>, and fill in <code>newState</code> with the state as it
48 * {@code oldState} descriptor points to the beginning of the state data
60 * @param data An open, read/write {@link BackupDataOutput}
61 * pointing to the backup data destination.
66 * state here after writing the requested data to the <code>data</code>
69 public void performBackup(ParcelFileDescriptor oldState, BackupDataOutput data,
74 * to restore a single entity from the restore data set. This method will b
    [all...]
  /frameworks/base/libs/storage/
IMountServiceListener.cpp 28 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
32 CHECK_INTERFACE(IMountServiceListener, data, reply);
33 bool connected = (data.readInt32() != 0);
39 CHECK_INTERFACE(IMountServiceListener, data, reply);
40 String16 path = data.readString16();
41 String16 oldState = data.readString16();
42 String16 newState = data.readString16();
48 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/compile/mclinker/lib/ADT/
StringEntry.cpp 31 free(const_cast<char*>(m_Value.data()));
36 char* data = (char*)malloc(pVal.size()+1); local
37 strcpy(data, pVal.data());
38 m_Value = llvm::StringRef(data, pVal.size());
44 char* data = (char*)malloc(length+1); local
45 strcpy(data, pVal);
46 m_Value = llvm::StringRef(data, length);
  /hardware/libhardware_legacy/include/hardware_legacy/
uevent.h 27 int uevent_add_native_handler(void (*handler)(void *data, const char *msg, int msg_len),
29 int uevent_remove_native_handler(void (*handler)(void *data, const char *msg, int msg_len));
  /packages/apps/Email/src/org/apache/commons/io/
EndianUtils.java 114 * @param data target byte array
118 public static void writeSwappedShort(byte[] data, int offset, short value) {
119 data[ offset + 0 ] = (byte)( ( value >> 0 ) & 0xff );
120 data[ offset + 1 ] = (byte)( ( value >> 8 ) & 0xff );
126 * @param data source byte array
130 public static short readSwappedShort(byte[] data, int offset) {
131 return (short)( ( ( data[ offset + 0 ] & 0xff ) << 0 ) +
132 ( ( data[ offset + 1 ] & 0xff ) << 8 ) );
139 * @param data source byte array
143 public static int readSwappedUnsignedShort(byte[] data, int offset) {
    [all...]
  /packages/providers/MediaProvider/tools/genfiles/
genfiles.sh 57 while read format mediatype mimetype data;
62 echo "cat /storage/sdcard0/proto.jpg > \"$data\"" >> $CPFILES
66 echo "cat /storage/sdcard0/proto.png > \"$data\"" >> $CPFILES
70 echo "cat /storage/sdcard0/proto.gif > \"$data\"" >> $CPFILES
74 echo "cat /storage/sdcard0/proto.txt > \"$data\"" >> $CPFILES
78 echo "cat /storage/sdcard0/proto.html > \"$data\"" >> $CPFILES
82 echo "cat /storage/sdcard0/proto.mp3 > \"$data\"" >> $CPFILES
86 echo "cat /storage/sdcard0/proto.wav > \"$data\"" >> $CPFILES
90 echo "cat /storage/sdcard0/proto.m4v > \"$data\"" >> $CPFILES
94 echo "cat /storage/sdcard0/proto.m4v > \"$data\"" >> $CPFILE
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/mach-ip22/
ds1286.h 24 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/mach-ip22/
ds1286.h 24 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
  /system/core/libcorkscrew/arch-mips/
ptrace-mips.c 24 void load_ptrace_map_info_data_arch(pid_t pid, map_info_t* mi, map_info_data_t* data) {
27 void free_ptrace_map_info_data_arch(map_info_t* mi, map_info_data_t* data) {
  /frameworks/av/media/libmedia/
IAudioFlingerClient.cpp 44 Parcel data, reply; local
45 data.writeInterfaceToken(IAudioFlingerClient::getInterfaceDescriptor());
46 data.writeInt32(event);
47 data.writeInt32((int32_t) ioHandle);
51 data.writeInt32(stream);
54 data.writeInt32(desc->samplingRate);
55 data.writeInt32(desc->format);
56 data.writeInt32(desc->channels);
57 data.writeInt32(desc->frameCount);
58 data.writeInt32(desc->latency)
    [all...]
IOMX.cpp 61 Parcel data, reply; local
62 data.writeInterfaceToken(IOMX::getInterfaceDescriptor());
63 data.writeIntPtr((intptr_t)node);
64 data.writeInt32(pid);
65 remote()->transact(LIVES_LOCALLY, data, &reply);
73 Parcel data, reply; local
74 data.writeInterfaceToken(IOMX::getInterfaceDescriptor());
75 remote()->transact(LIST_NODES, data, &reply);
94 Parcel data, reply; local
95 data.writeInterfaceToken(IOMX::getInterfaceDescriptor())
111 Parcel data, reply; local
121 Parcel data, reply; local
134 Parcel data, reply; local
155 Parcel data, reply; local
169 Parcel data, reply; local
190 Parcel data, reply; local
203 Parcel data, reply; local
214 Parcel data, reply; local
227 Parcel data, reply; local
241 Parcel data, reply; local
264 Parcel data, reply; local
285 Parcel data, reply; local
299 Parcel data, reply; local
322 Parcel data, reply; local
343 Parcel data, reply; local
354 Parcel data, reply; local
368 Parcel data, reply; local
385 Parcel data, reply; local
757 Parcel data, reply; local
    [all...]
IStreamSource.cpp 53 Parcel data, reply; local
54 data.writeInterfaceToken(IStreamSource::getInterfaceDescriptor());
55 data.writeStrongBinder(listener->asBinder());
56 remote()->transact(SET_LISTENER, data, &reply);
60 Parcel data, reply; local
61 data.writeInterfaceToken(IStreamSource::getInterfaceDescriptor());
62 data.writeInt32(static_cast<int32_t>(buffers.size()));
64 data.writeStrongBinder(buffers.itemAt(i)->asBinder());
66 remote()->transact(SET_BUFFERS, data, &reply);
70 Parcel data, reply local
78 Parcel data, reply; local
143 Parcel data, reply; local
153 Parcel data, reply; local
    [all...]
  /frameworks/native/libs/gui/
ISensorEventConnection.cpp 49 Parcel data, reply; local
50 data.writeInterfaceToken(ISensorEventConnection::getInterfaceDescriptor());
51 remote()->transact(GET_SENSOR_CHANNEL, data, &reply);
57 Parcel data, reply; local
58 data.writeInterfaceToken(ISensorEventConnection::getInterfaceDescriptor());
59 data.writeInt32(handle);
60 data.writeInt32(enabled);
61 remote()->transact(ENABLE_DISABLE, data, &reply);
67 Parcel data, reply; local
68 data.writeInterfaceToken(ISensorEventConnection::getInterfaceDescriptor())
    [all...]
ISurfaceComposerClient.cpp 60 Parcel data, reply; local
61 data.writeInterfaceToken(ISurfaceComposerClient::getInterfaceDescriptor());
62 data.writeString8(name);
63 data.writeInt32(w);
64 data.writeInt32(h);
65 data.writeInt32(format);
66 data.writeInt32(flags);
67 remote()->transact(CREATE_SURFACE, data, &reply);
74 Parcel data, reply; local
75 data.writeInterfaceToken(ISurfaceComposerClient::getInterfaceDescriptor())
    [all...]
  /libcore/luni/src/main/java/java/net/
DatagramPacket.java 21 * This class represents a datagram packet which contains data either to be sent
29 private byte[] data; field in class:DatagramPacket
32 * Length of the data to be sent or size of data that was received via
40 * It's used to limit the amount of data that will be taken from future packets.
51 * Constructs a new {@code DatagramPacket} object to receive data up to
54 * @param data
57 * the length of the data buffer.
59 public DatagramPacket(byte[] data, int length) {
60 this(data, 0, length)
    [all...]
  /external/icu4c/common/
rbbirb.cpp 134 // flattenData() - Collect up the compiled RBBI rule data and put it into
135 // the format for saving in ICU data files,
151 // Calculate the size of each section in the data.
153 // Sections sizes actually stored in the header are for the actual data
169 RBBIDataHeader *data = (RBBIDataHeader *)uprv_malloc(totalSize); local
170 if (data == NULL) {
174 uprv_memset(data, 0, totalSize);
177 data->fMagic = 0xb1a0;
178 data->fFormatVersion[0] = 3;
179 data->fFormatVersion[1] = 1
294 RBBIDataHeader *data = builder.flattenData(); \/\/ returns NULL if error local
    [all...]
  /frameworks/compile/mclinker/unittests/
FactoriesTest.cpp 60 node->data = (int*)malloc(sizeof(int));
61 *(node->data) = i;
65 NodeAlloc::iterator data = m_pNodeAlloc->begin(); local
67 for (; data!=dEnd; ++data) {
68 ASSERT_EQ(counter, *(*data).data );
69 free((*data).data);
70 (*data).data = 0
86 NodeAlloc::iterator data = m_pNodeAlloc->begin(); local
108 NodeAlloc::iterator data = m_pNodeAlloc->begin(); local
144 NodeAlloc::iterator data = m_pNodeAlloc->begin(); local
    [all...]

Completed in 997 milliseconds

1 2 3 4 5 6 7 891011>>