Home
last modified time | relevance | path

Searched refs:oc (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDessertCaseView.java357 for (final Point oc : getOccupied(v)) {
358 mFreeList.add(oc);
359 mCells[oc.y*mColumns + oc.x] = null;
383 for (final Point oc : occupied) {
384 final View squatter = mCells[oc.y*mColumns + oc.x];
417 for (final Point oc : occupied) {
418 mCells[oc.y*mColumns + oc.x] = v;
419 mFreeList.remove(oc);
/frameworks/base/libs/usb/tests/accessorytest/
Daudio.c187 int init_audio(unsigned int ic, unsigned int id, unsigned int oc, unsigned int od) in init_audio() argument
209 pcm = pcm_open(oc, od, PCM_OUT, &config); in init_audio()
212 oc, od, pcm_get_error(pcm)); in init_audio()
Daccessory.h20 int init_audio(unsigned int ic, unsigned int id, unsigned int oc, unsigned int od);
/frameworks/ml/nn/common/operations/
DDepthwiseConv2D.cpp204 const int oc = m + ic * depthMultiplier; in depthwiseConvQuant8PerChannel() local
217 i * filterWidth * filterDepth + j * filterDepth + oc; in depthwiseConvQuant8PerChannel()
227 sum += biasData[oc]; in depthwiseConvQuant8PerChannel()
228 sum = tflite::MultiplyByQuantizedMultiplier(sum, outputMultiplier[oc], in depthwiseConvQuant8PerChannel()
229 -outputShift[oc]); in depthwiseConvQuant8PerChannel()
/frameworks/base/core/java/android/content/res/
DCompatibilityInfo.java557 CompatibilityInfo oc = (CompatibilityInfo)o;
558 if (mCompatibilityFlags != oc.mCompatibilityFlags) return false;
559 if (applicationDensity != oc.applicationDensity) return false;
560 if (applicationScale != oc.applicationScale) return false;
561 if (applicationInvertedScale != oc.applicationInvertedScale) return false;
/frameworks/native/opengl/libagl/
Dprimitives.cpp898 unsigned int oc = 0; in clip_triangle() local
912 oc++; in clip_triangle()
918 oc++; in clip_triangle()
929 oc++; in clip_triangle()
934 oc++; in clip_triangle()
943 if (oc<3) in clip_triangle()
946 ic = oc; in clip_triangle()
964 unsigned int oc = 0; in clip_triangle() local
977 oc++; in clip_triangle()
983 oc++; in clip_triangle()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java496 public boolean p2pSetChannel(int lc, int oc) { in p2pSetChannel() argument
497 return mSupplicantP2pIfaceHal.setListenChannel(lc, oc); in p2pSetChannel()
DWifiP2pServiceImpl.java1702 int oc = p2pChannels.getInt("oc", 0); in processMessage() local
1706 if (mWifiNative.p2pSetChannel(lc, oc)) { in processMessage()
2022 int oc = p2pChannels.getInt("oc", 0); in processMessage() local
2026 if (mWifiNative.p2pSetChannel(lc, oc)) { in processMessage()
/frameworks/base/services/core/java/com/android/server/content/
DContentService.java434 ObserverCall oc = calls.get(i); in notifyChange() local
436 oc.mObserver.onChange(oc.mSelfChange, uri, userHandle); in notifyChange()
437 if (DEBUG) Slog.d(TAG, "Notified " + oc.mObserver + " of " + "update at " in notifyChange()
442 IBinder binder = oc.mObserver.asBinder(); in notifyChange()
444 = oc.mNode.mObservers; in notifyChange()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalTest.java1591 int oc = 163; in testSetListenChannel_success() local
1607 assertFalse(mDut.setListenChannel(lc, oc)); in testSetListenChannel_success()
1609 assertTrue(mDut.setListenChannel(lc, oc)); in testSetListenChannel_success()
1618 int oc = 0; in testSetListenChannel_successResetDisallowedFreq() local
1626 assertFalse(mDut.setListenChannel(lc, oc)); in testSetListenChannel_successResetDisallowedFreq()
1628 assertTrue(mDut.setListenChannel(lc, oc)); in testSetListenChannel_successResetDisallowedFreq()
/frameworks/base/proto/src/
Dipconnectivity.proto491 // Since oc-mr1.
634 // oc: 3.
635 // oc-dr1: 4. (sailfish, marlin, walleye, taimen)
/frameworks/base/wifi/java/android/net/wifi/p2p/
DWifiP2pManager.java1351 public void setWifiP2pChannels(Channel c, int lc, int oc, ActionListener listener) { in setWifiP2pChannels() argument
1355 p2pChannels.putInt("oc", oc); in setWifiP2pChannels()