Searched defs:val (Results 1 - 25 of 225) sorted by last modified time

123456789

/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp629 int32_t val; local
630 if (msg->findInt32(PLAYEREVENT_PREFETCHSTATUSCHANGE, &val)) {
631 SL_LOGV("\tASfPlayer notifying %s = %d", PLAYEREVENT_PREFETCHSTATUSCHANGE, val);
632 notifyClient(kEventPrefetchStatusChange, val, 0, notifyUser);
634 else if (msg->findInt32(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, &val)) {
635 SL_LOGV("\tASfPlayer notifying %s = %d", PLAYEREVENT_PREFETCHFILLLEVELUPDATE, val);
636 notifyClient(kEventPrefetchFillLevelUpdate, val, 0, notifyUser);
638 else if (msg->findInt32(PLAYEREVENT_ENDOFSTREAM, &val)) {
639 SL_LOGV("\tASfPlayer notifying %s = %d", PLAYEREVENT_ENDOFSTREAM, val);
640 notifyClient(kEventEndOfStream, val,
[all...]
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DAbsActionBarView.java255 static protected int next(int x, int val, boolean isRtl) { argument
256 return isRtl ? x - val : x + val;
/frameworks/support/compat/src/main/java/androidx/core/graphics/
H A DPathParser.java103 float[] val = getFloats(s);
104 addNode(list, s.charAt(0), val);
188 private static void addNode(ArrayList<PathDataNode> list, char cmd, float[] val) { argument
189 list.add(new PathDataNode(cmd, val));
363 char previousCmd, char cmd, float[] val) {
418 for (int k = 0; k < val.length; k += incr) {
421 currentX += val[k + 0];
422 currentY += val[k + 1];
427 path.rLineTo(val[k + 0], val[
362 addCommand(Path path, float[] current, char previousCmd, char cmd, float[] val) argument
[all...]
/frameworks/support/compat/src/main/java/androidx/core/net/
H A DDatagramSocketWrapper.java111 public void setOption(int optID, Object val) throws SocketException { argument
/frameworks/support/exifinterface/src/main/java/androidx/exifinterface/media/
H A DExifInterface.java6358 public void writeByte(int val) throws IOException { argument
6359 mOutputStream.write(val);
6362 public void writeShort(short val) throws IOException { argument
6364 mOutputStream.write((val >>> 0) & 0xFF);
6365 mOutputStream.write((val >>> 8) & 0xFF);
6367 mOutputStream.write((val >>> 8) & 0xFF);
6368 mOutputStream.write((val >>> 0) & 0xFF);
6372 public void writeInt(int val) throws IOException { argument
6374 mOutputStream.write((val >>> 0) & 0xFF);
6375 mOutputStream.write((val >>>
6386 writeUnsignedShort(int val) argument
6390 writeUnsignedInt(long val) argument
[all...]
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DUT_bug_char.java34 private Byte2 pack_b2(byte[] val) { argument
35 assert val.length == 2;
36 Log.i("bug_char", "pack_b2 " + val[0] + " " + val[1]);
37 return new Byte2(val[0], val[1]);
H A DUT_math_agree.java37 private Float2 pack_f2(float[] val) { argument
38 assert val.length == 2;
39 return new Float2(val[0], val[1]);
41 private Float3 pack_f3(float[] val) { argument
42 assert val.length == 3;
43 return new Float3(val[0], val[1], val[2]);
45 private Float4 pack_f4(float[] val) { argument
49 pack_b2(byte[] val) argument
53 pack_b3(byte[] val) argument
57 pack_b4(byte[] val) argument
61 pack_s2(short[] val) argument
65 pack_s3(short[] val) argument
69 pack_s4(short[] val) argument
73 pack_i2(int[] val) argument
77 pack_i3(int[] val) argument
81 pack_i4(int[] val) argument
85 pack_l2(long[] val) argument
89 pack_l3(long[] val) argument
93 pack_l4(long[] val) argument
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A DUT_bug_char.java33 private Byte2 pack_b2(byte[] val) { argument
34 assert val.length == 2;
35 Log.i("bug_char", "pack_b2 " + val[0] + " " + val[1]);
36 return new Byte2(val[0], val[1]);
H A DUT_math_agree.java48 private Float2 pack_f2(float[] val) { argument
49 assert val.length == 2;
50 return new Float2(val[0], val[1]);
53 private Float3 pack_f3(float[] val) { argument
54 assert val.length == 3;
55 return new Float3(val[0], val[1], val[2]);
58 private Float4 pack_f4(float[] val) { argument
63 pack_b2(byte[] val) argument
68 pack_b3(byte[] val) argument
73 pack_b4(byte[] val) argument
78 pack_s2(short[] val) argument
83 pack_s3(short[] val) argument
88 pack_s4(short[] val) argument
93 pack_i2(int[] val) argument
98 pack_i3(int[] val) argument
103 pack_i4(int[] val) argument
108 pack_l2(long[] val) argument
113 pack_l3(long[] val) argument
118 pack_l4(long[] val) argument
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
H A DUT_bug_char.java35 private Byte2 pack_b2(byte[] val) { argument
36 assert val.length == 2;
37 Log.i("bug_char", "pack_b2 " + val[0] + " " + val[1]);
38 return new Byte2(val[0], val[1]);
H A DUT_math_agree.java50 private Float2 pack_f2(float[] val) { argument
51 assert val.length == 2;
52 return new Float2(val[0], val[1]);
55 private Float3 pack_f3(float[] val) { argument
56 assert val.length == 3;
57 return new Float3(val[0], val[1], val[2]);
60 private Float4 pack_f4(float[] val) { argument
65 pack_b2(byte[] val) argument
70 pack_b3(byte[] val) argument
75 pack_b4(byte[] val) argument
80 pack_s2(short[] val) argument
85 pack_s3(short[] val) argument
90 pack_s4(short[] val) argument
95 pack_i2(int[] val) argument
100 pack_i3(int[] val) argument
105 pack_i4(int[] val) argument
110 pack_l2(long[] val) argument
115 pack_l3(long[] val) argument
120 pack_l4(long[] val) argument
[all...]
/frameworks/rs/cpp/util/
H A DStrongPointer.h31 TextOutput& printStrongPointer(TextOutput& to, const void* val);
115 TextOutput& operator<<(TextOutput& to, const sp<T>& val);
212 inline TextOutput& operator<<(TextOutput& to, const sp<T>& val) argument
214 return printStrongPointer(to, val.get());
/frameworks/rs/cpu_ref/
H A DrsCpuCore.cpp362 static uint32_t sliceInt(uint32_t *p, uint32_t val, uint32_t start, uint32_t end) { argument
365 return val;
370 uint32_t n = val / div;
371 *p = (val - (n * div)) + start;
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp133 typedef struct { unsigned int val; } rs_allocation_usage_type; member in struct:__anon1985
545 void rsSetElementAt_##T(::rs_allocation a, const T *val, uint32_t x, uint32_t y, uint32_t z) { \
547 if (r != nullptr) ((T *)r)[0] = *val; \
550 void rsSetElementAt_##T(::rs_allocation a, const T *val, uint32_t x, uint32_t y) { \
551 rsSetElementAt_##T(a, val, x, y, 0); \
553 void rsSetElementAt_##T(::rs_allocation a, const T *val, uint32_t x) { \
554 rsSetElementAt_##T(a, val, x, 0, 0); \
556 void rsGetElementAt_##T(::rs_allocation a, T *val, uint32_t x, uint32_t y, uint32_t z) { /*NOLINT*/ \
558 if (r != nullptr) *val = ((T *)r)[0]; \
561 void rsGetElementAt_##T(::rs_allocation a, T *val, uint32_
[all...]
/frameworks/rs/
H A DrsCppUtils.h120 T rsFindHighBit(T val) { argument
122 while (val > 1) {
124 val>>=1;
130 bool rsIsPow2(T val) { argument
131 return (val & (val-1)) == 0;
H A DrsScript.cpp59 void Script::setVar(uint32_t slot, const void *val, size_t len) { argument
60 //ALOGE("setVar %i %p %i", slot, val, len);
67 mRSC->mHal.funcs.script.setGlobalVar(mRSC, this, slot, (void *)val, len);
70 void Script::getVar(uint32_t slot, const void *val, size_t len) { argument
71 //ALOGE("getVar %i %p %i", slot, val, len);
79 mRSC->mHal.funcs.script.getGlobalVar(mRSC, this, slot, (void *)val, len);
82 void Script::setVar(uint32_t slot, const void *val, size_t len, Element *e, argument
92 (void *)val, len, e, dims, dimLen);
95 void Script::setVarObj(uint32_t slot, ObjectBase *val) { argument
96 //ALOGE("setVarObj %i %p", slot, val);
[all...]
/frameworks/rs/rsov/driver/
H A DrsovRuntimeStubs.cpp119 typedef struct { unsigned int val; } rs_allocation_usage_type; member in struct:__anon2064
519 void rsSetElementAt_##T(::rs_allocation a, const T *val, uint32_t x, \
523 ((T *)r)[0] = *val; \
527 void rsSetElementAt_##T(::rs_allocation a, const T *val, uint32_t x, \
529 rsSetElementAt_##T(a, val, x, y, 0); \
531 void rsSetElementAt_##T(::rs_allocation a, const T *val, uint32_t x) { \
532 rsSetElementAt_##T(a, val, x, 0, 0); \
534 void rsGetElementAt_##T(::rs_allocation a, T *val, uint32_t x, uint32_t y, \
538 *val = ((T *)r)[0]; \
542 void rsGetElementAt_##T(::rs_allocation a, T *val, uint32_
[all...]
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DRenderScript.java705 native void rsnScriptSetVarI(long con, long id, int slot, int val, boolean mUseInc); argument
706 synchronized void nScriptSetVarI(long id, int slot, int val, boolean mUseInc) { argument
712 rsnScriptSetVarI(curCon, id, slot, val, mUseInc);
714 native void rsnScriptSetVarJ(long con, long id, int slot, long val, boolean mUseInc); argument
715 synchronized void nScriptSetVarJ(long id, int slot, long val, boolean mUseInc) { argument
721 rsnScriptSetVarJ(curCon, id, slot, val, mUseInc);
723 native void rsnScriptSetVarF(long con, long id, int slot, float val, boolean mUseInc); argument
724 synchronized void nScriptSetVarF(long id, int slot, float val, boolean mUseInc) { argument
730 rsnScriptSetVarF(curCon, id, slot, val, mUseInc);
732 native void rsnScriptSetVarD(long con, long id, int slot, double val, boolea argument
733 nScriptSetVarD(long id, int slot, double val, boolean mUseInc) argument
741 rsnScriptSetVarV(long con, long id, int slot, byte[] val, boolean mUseInc) argument
742 nScriptSetVarV(long id, int slot, byte[] val, boolean mUseInc) argument
750 rsnScriptSetVarVE(long con, long id, int slot, byte[] val, long e, int[] dims, boolean mUseInc) argument
752 nScriptSetVarVE(long id, int slot, byte[] val, long e, int[] dims, boolean mUseInc) argument
761 rsnScriptSetVarObj(long con, long id, int slot, long val, boolean mUseInc) argument
762 nScriptSetVarObj(long id, int slot, long val, boolean mUseInc) argument
[all...]
/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp1401 nScriptSetVarI(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jint val, jboolean mUseInc) argument
1403 LOG_API("nScriptSetVarI, con(%p), s(%p), slot(%i), val(%i)", (RsContext)con,
1404 (void *)script, slot, val);
1406 dispatchTabInc.ScriptSetVarI((RsContext)con, (RsScript)script, slot, val);
1408 dispatchTab.ScriptSetVarI((RsContext)con, (RsScript)script, slot, val);
1413 nScriptSetVarObj(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jlong val, jboolean mUseInc) argument
1415 LOG_API("nScriptSetVarObj, con(%p), s(%p), slot(%i), val(%i)", (RsContext)con,
1416 (void *)script, slot, val);
1418 dispatchTabInc.ScriptSetVarObj((RsContext)con, (RsScript)script, slot, (RsObjectBase)val);
1420 dispatchTab.ScriptSetVarObj((RsContext)con, (RsScript)script, slot, (RsObjectBase)val);
1425 nScriptSetVarJ(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jlong val, jboolean mUseInc) argument
1437 nScriptSetVarF(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, float val, jboolean mUseInc) argument
1449 nScriptSetVarD(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, double val, jboolean mUseInc) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DNetworkScanRequestTracker.java217 synchronized void setIsBinderDead(boolean val) { argument
218 mIsBinderDead = val;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccRecords.java873 protected void setSystemProperty(String key, String val) { argument
874 TelephonyManager.getDefault().setTelephonyProperty(mParentApp.getPhoneId(), key, val);
876 log("[key, value]=" + key + ", " + val);
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DPropertyService.java38 void set(String key, String val); argument
H A DSystemPropertyService.java27 public void set(String key, String val) { argument
28 android.os.SystemProperties.set(key, val);

Completed in 280 milliseconds

123456789