Searched defs:index (Results 151 - 175 of 474) sorted by relevance

1234567891011>>

/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s109 index RN 12 label
133 LDR index, =armVCM4P2_DCScaler
134 ADD index,index,videoComp,LSL #5
135 LDRB dcScaler,[index,QP]
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s94 index RN 4 label
211 M_BD_VLD index,T1,T2,VlcMVD,3,2 ;// variable lenght decoding using the macro
213 TEQ index,temp
216 SUB mvHorData,index,#32 ;// mvHorData=index-32
241 M_BD_VLD index,T1,T2,VlcMVD,3,2 ;// VLC decoding using the macro
243 TEQ index,temp
246 SUB mvVerData,index,#32 ;// mvVerData=index-32
H A DomxVCM4P2_QuantInvIntra_I_s.s76 index RN 5 label
128 LDR index, =armVCM4P2_DCScaler
129 ADD index,index,videoComp,LSL #5
130 LDRB dcScaler,[index,QP]
/frameworks/base/media/libstagefright/rtsp/
H A DARTPSession.cpp86 notify->setSize("track-index", mTracks.size() - 1);
139 CHECK(msg->findSize("track-index", &trackIndex));
200 bool ARTPSession::validateMediaFormat(size_t index, unsigned *port) const { argument
202 mDesc->getFormat(index, &format);
239 sp<MediaSource> ARTPSession::trackAt(size_t index) { argument
240 CHECK_LT(index, mTracks.size());
241 return mTracks.editItemAt(index).mPacketSource;
H A DARTPSource.cpp41 const sp<ASessionDescription> &sessionDesc, size_t index,
55 sessionDesc->getFormatType(index, &PT, &desc, &params);
39 ARTPSource( uint32_t id, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify) argument
/frameworks/base/media/mtp/
H A DMtpPacket.cpp135 uint32_t MtpPacket::getParameter(int index) const {
136 if (index < 1 || index > 5) {
137 LOGE("index %d out of range in MtpPacket::getParameter", index);
140 return getUInt32(MTP_CONTAINER_PARAMETER_OFFSET + (index - 1) * sizeof(uint32_t));
143 void MtpPacket::setParameter(int index, uint32_t value) { argument
144 if (index < 1 || index > 5) {
145 LOGE("index
[all...]
/frameworks/base/opengl/libagl/
H A DTokenizer.cpp129 ssize_t Tokenizer::_insertTokenAt(uint32_t token, size_t index) argument
133 if (index >= 1) {
135 run_t& p = mRanges.editItemAt(index-1);
138 if (index < c) {
139 const run_t& n = mRanges[index];
142 mRanges.removeItemsAt(index);
145 return index;
149 if (index < c) {
151 run_t& n = mRanges.editItemAt(index);
155 return index;
[all...]
/frameworks/base/opengl/libs/EGL/
H A Degl_display.cpp83 uintptr_t index = uintptr_t(dpy)-1U; local
84 return (index >= NUM_DISPLAYS) ? NULL : &sDisplay[index];
/frameworks/base/opengl/tools/glgen/src/
H A DJFunc.java76 public String getBufferArgName(int index) { argument
77 return bufferArgNames.get(index);
109 public String getArgName(int index) { argument
110 return argNames.get(index);
113 public JType getArgType(int index) { argument
114 return argTypes.get(index);
117 public int getArgCIndex(int index) { argument
118 return argCIndices.get(index).intValue();
/frameworks/base/services/sensorservice/
H A DSensorDevice.cpp191 LOGD_IF(DEBUG_CONNECTIONS, "... index=%ld",
204 LOGD_IF(DEBUG_CONNECTIONS, "... index=%ld",
257 ssize_t index = rates.indexOfKey(ident); local
258 if (index < 0) {
260 ident, ns, strerror(-index));
263 rates.editValueAt(index) = ns;
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDriverCall.java40 public int index; field in class:DriverCall
60 // index,isMT,state,mode,isMpty(,number,TOA)?
64 ret.index = p.nextInt();
106 return "id=" + index + ","
147 /** For sorting by index */
154 if (index < dc.index) {
156 } else if (index == dc.index) {
158 } else { /*index > d
[all...]
H A DIccPhoneBookInterfaceManager.java174 * Update an ADN-like EF record by record index
186 * @param index is 1-based adn record index to be updated
192 String newPhoneNumber, int index, String pin2) {
202 " Index=" + index + " ==> " +
210 adnCache.updateAdnByIndex(efid, newAdn, index, pin2, response);
191 updateAdnRecordsInEfByIndex(int efid, String newTag, String newPhoneNumber, int index, String pin2) argument
H A DIccSmsInterfaceManagerProxy.java40 updateMessageOnIccEf(int index, int status, byte[] pdu) throws android.os.RemoteException { argument
41 return mIccSmsInterfaceManager.updateMessageOnIccEf(index, status, pdu);
H A DRetryManager.java255 int index;
257 index = mRetryCount;
259 index = mRetryArray.size() - 1;
263 if ((index >= 0) && (index < mRetryArray.size())) {
264 retVal = mRetryArray.get(index).mDelayTime + nextRandomizationTime(index);
377 * Return next random number for the index
379 private int nextRandomizationTime(int index) { argument
380 int randomTime = mRetryArray.get(index)
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DRuimSmsInterfaceManager.java104 * @param index record index of message to update
113 updateMessageOnIccEf(int index, int status, byte[] pdu) { argument
114 if (DBG) log("updateMessageOnIccEf: index=" + index +
125 mPhone.mCM.deleteSmsOnRuim(index, response);
129 IccConstants.EF_SMS, index, record, null, response);
134 log("interrupted while trying to update by index");
164 log("interrupted while trying to update by index");
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSuppServiceNotification.java31 /** TS 27.007 7.17 "index" */
32 public int index; field in class:SuppServiceNotification
65 + " index: " + index
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSgTransform.java65 public void setTransform(int index, Float4 value, TransformType type) { argument
66 mTransformData.transforms[index] = value;
67 mTransformData.transformTypes[index] = type.mID;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeRenderSession.java118 public Result insertChild(Object parentView, ILayoutPullParser childXml, int index, argument
128 mLastResult = mSession.insertChild((ViewGroup) parentView, childXml, index,
141 public Result moveChild(Object parentView, Object childView, int index, argument
154 mLastResult = mSession.moveChild((ViewGroup) parentView, (View) childView, index,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java56 public String getAttributeName(int index) { argument
60 public String getAttributeValue(int index) { argument
68 public int getAttributeNameResource(int index) { argument
102 public int getAttributeListValue(int index, argument
107 public boolean getAttributeBooleanValue(int index, boolean defaultValue) { argument
111 public int getAttributeResourceValue(int index, int defaultValue) { argument
115 public int getAttributeIntValue(int index, int defaultValue) { argument
119 public int getAttributeUnsignedIntValue(int index, int defaultValue) { argument
123 public float getAttributeFloatValue(int index, float defaultValue) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DCustomBar.java109 protected void loadIcon(int index, String iconName, Density density) { argument
110 View child = getChildAt(index);
141 protected void loadIcon(int index, String iconReference) { argument
144 loadIcon(index, value);
156 protected Drawable loadIcon(int index, ResourceType type, String name) { argument
165 return loadIcon(index, value);
168 private Drawable loadIcon(int index, ResourceValue value) { argument
169 View child = getChildAt(index);
200 protected TextView setText(int index, String stringReference) { argument
201 View child = getChildAt(index);
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java112 * Removes the mapping at the specified index.
114 public void removeAt(int index) { argument
115 if (mValues[index] != DELETED) {
116 mValues[index] = DELETED;
223 * Given an index in the range <code>0...size()-1</code>, returns
224 * the key from the <code>index</code>th key-value mapping that this
227 public int keyAt(int index) { argument
232 return mKeys[index];
236 * Given an index in the range <code>0...size()-1</code>, returns
237 * the value from the <code>index</cod
240 valueAt(int index) argument
253 setValueAt(int index, E value) argument
[all...]
/frameworks/base/tools/localize/
H A DPerforce.cpp223 size_t index = text.find(' '); local
224 if (index == text.npos) {
227 index = text.find(' ', index+1)+1;
228 if (index == text.npos) {
232 return text.substr(index, text.length()-index-1);
/frameworks/compile/linkloader/include/
H A DELFSectionHeader.h38 size_t index; member in class:ELFSectionHeader_CRTP
53 return index;
89 read(Archiver &AR, ELFObjectTy const *owner, size_t index = 0);
H A DELFSymbol.h51 size_t index; member in class:ELFSymbol_CRTP
77 return index;
140 read(Archiver &AR, ELFObject<Bitwidth> const *owner, size_t index = 0);
/frameworks/opt/mailcommon/java/com/android/mailcommon/
H A DMergedAdapter.java85 public T getSubAdapter(int index) { argument
86 return mAdapters.get(index);

Completed in 836 milliseconds

1234567891011>>