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

12345

/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp626 int32_t val; local
627 if (msg->findInt32(PLAYEREVENT_PREFETCHSTATUSCHANGE, &val)) {
628 SL_LOGV("\tASfPlayer notifying %s = %d", PLAYEREVENT_PREFETCHSTATUSCHANGE, val);
629 notifyClient(kEventPrefetchStatusChange, val, 0, notifyUser);
631 else if (msg->findInt32(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, &val)) {
632 SL_LOGV("\tASfPlayer notifying %s = %d", PLAYEREVENT_PREFETCHFILLLEVELUPDATE, val);
633 notifyClient(kEventPrefetchFillLevelUpdate, val, 0, notifyUser);
635 else if (msg->findInt32(PLAYEREVENT_ENDOFSTREAM, &val)) {
636 SL_LOGV("\tASfPlayer notifying %s = %d", PLAYEREVENT_ENDOFSTREAM, val);
637 notifyClient(kEventEndOfStream, val,
[all...]
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiSelector.java316 * @param val Value to match
319 public UiSelector enabled(boolean val) { argument
320 return buildSelector(SELECTOR_ENABLED, val);
334 * @param val Value to match
337 public UiSelector focused(boolean val) { argument
338 return buildSelector(SELECTOR_FOCUSED, val);
352 * @param val Value to match
355 public UiSelector focusable(boolean val) { argument
356 return buildSelector(SELECTOR_FOCUSABLE, val);
370 * @param val Valu
373 scrollable(boolean val) argument
392 selected(boolean val) argument
411 checked(boolean val) argument
429 clickable(boolean val) argument
447 longClickable(boolean val) argument
[all...]
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DRenderScript.java377 native void rsnScriptSetVarI(int con, int id, int slot, int val); argument
378 synchronized void nScriptSetVarI(int id, int slot, int val) { argument
380 rsnScriptSetVarI(mContext, id, slot, val);
382 native void rsnScriptSetVarJ(int con, int id, int slot, long val); argument
383 synchronized void nScriptSetVarJ(int id, int slot, long val) { argument
385 rsnScriptSetVarJ(mContext, id, slot, val);
387 native void rsnScriptSetVarF(int con, int id, int slot, float val); argument
388 synchronized void nScriptSetVarF(int id, int slot, float val) { argument
390 rsnScriptSetVarF(mContext, id, slot, val);
392 native void rsnScriptSetVarD(int con, int id, int slot, double val); argument
393 nScriptSetVarD(int id, int slot, double val) argument
397 rsnScriptSetVarV(int con, int id, int slot, byte[] val) argument
398 nScriptSetVarV(int id, int slot, byte[] val) argument
402 rsnScriptSetVarVE(int con, int id, int slot, byte[] val, int e, int[] dims) argument
404 nScriptSetVarVE(int id, int slot, byte[] val, int e, int[] dims) argument
409 rsnScriptSetVarObj(int con, int id, int slot, int val) argument
410 nScriptSetVarObj(int id, int slot, int val) argument
[all...]
/frameworks/support/renderscript/v8/jni/
H A Dandroid_renderscript_RenderScript.cpp613 nScriptSetVarI(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) argument
615 LOG_API("nScriptSetVarI, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val);
616 rsScriptSetVarI(con, (RsScript)script, slot, val);
620 nScriptSetVarObj(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val) argument
622 LOG_API("nScriptSetVarObj, con(%p), s(%p), slot(%i), val(%i)", con, (void *)script, slot, val);
623 rsScriptSetVarObj(con, (RsScript)script, slot, (RsObjectBase)val);
627 nScriptSetVarJ(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jlong val) argument
629 LOG_API("nScriptSetVarJ, con(%p), s(%p), slot(%i), val(
634 nScriptSetVarF(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, float val) argument
641 nScriptSetVarD(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, double val) argument
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A DrsScript.cpp54 void Script::setVar(uint32_t slot, const void *val, size_t len) { argument
55 //ALOGE("setVar %i %p %i", slot, val, len);
60 mRSC->mHal.funcs.script.setGlobalVar(mRSC, this, slot, (void *)val, len);
63 void Script::setVar(uint32_t slot, const void *val, size_t len, Element *e, argument
70 (void *)val, len, e, dims, dimLen);
73 void Script::setVarObj(uint32_t slot, ObjectBase *val) { argument
74 //ALOGE("setVarObj %i %p", slot, val);
79 //ALOGE("setvarobj %i %p", slot, val);
80 mRSC->mHal.funcs.script.setGlobalObj(mRSC, this, slot, val);
H A DrsUtils.h64 T rsFindHighBit(T val) { argument
66 while (val > 1) {
68 val>>=1;
74 bool rsIsPow2(T val) { argument
75 return (val & (val-1)) == 0;
/frameworks/rs/
H A DrsScript.cpp54 void Script::setVar(uint32_t slot, const void *val, size_t len) { argument
55 //ALOGE("setVar %i %p %i", slot, val, len);
60 mRSC->mHal.funcs.script.setGlobalVar(mRSC, this, slot, (void *)val, len);
63 void Script::setVar(uint32_t slot, const void *val, size_t len, Element *e, argument
70 (void *)val, len, e, dims, dimLen);
73 void Script::setVarObj(uint32_t slot, ObjectBase *val) { argument
74 //ALOGE("setVarObj %i %p", slot, val);
79 //ALOGE("setvarobj %i %p", slot, val);
80 mRSC->mHal.funcs.script.setGlobalObj(mRSC, this, slot, val);
H A DrsUtils.h64 T rsFindHighBit(T val) { argument
66 while (val > 1) {
68 val>>=1;
74 bool rsIsPow2(T val) { argument
75 return (val & (val-1)) == 0;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimPhoneBookManager.java281 ArrayList<String> val = mEmailsForAdnRec.get(adnRecNum - 1);
282 if (val == null) {
283 val = new ArrayList<String>();
285 val.add(email);
287 mEmailsForAdnRec.put(adnRecNum - 1, val);
401 Map<Integer, Integer> val = new HashMap<Integer, Integer>();
410 parseEf(tlvEf, val, tag);
414 mFileIds.put(recNum, val);
417 void parseEf(SimTlv tlv, Map<Integer, Integer> val, int parentTag) { argument
442 val
[all...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java704 for (Long val: dtSet) {
705 setTimeFromLongValue(mIterator, val);
1306 private static final void setTimeFromLongValue(Time date, long val) { argument
1307 date.year = (int) (val >> 26);
1308 date.month = (int) (val >> 22) & 0xf;
1309 date.monthDay = (int) (val >> 17) & 0x1f;
1310 date.hour = (int) (val >> 12) & 0x1f;
1311 date.minute = (int) (val >> 6) & 0x3f;
1312 date.second = (int) (val & 0x3f);
/frameworks/compile/slang/
H A Dslang_rs_reflection_cpp.cpp144 const clang::APValue &val = ev->getInit(); local
146 write(string(" return ") + genInitValue(val, isBool) + ";");
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
H A Dsparse_weight_vector.h85 // True if there is a bound with val containing the bound. false otherwise.
86 bool GetElementMinBound(const Key &fname, double *val) const {
87 return GetValue(wmin_, fname, val);
89 bool GetElementMaxBound(const Key &fname, double *val) const {
90 return GetValue(wmax_, fname, val);
100 double val = 0; local
101 GetValue(w_, fname, &val);
102 return val;
104 void SetElement(const Key &fname, const double val) { argument
105 //DCHECK(!isnan(val));
108 AddUpdateElement(const Key &fname, const double val) argument
111 MultUpdateElement(const Key &fname, const double val) argument
[all...]
/frameworks/native/include/binder/
H A DParcel.h94 status_t writeInt32(int32_t val);
95 status_t writeInt64(int64_t val);
96 status_t writeFloat(float val);
97 status_t writeDouble(double val);
98 status_t writeIntPtr(intptr_t val);
103 status_t writeStrongBinder(const sp<IBinder>& val);
104 status_t writeWeakBinder(const wp<IBinder>& val);
105 status_t write(const Flattenable& val);
108 status_t write(const LightFlattenable<T>& val);
132 status_t writeObject(const flat_binder_object& val, boo
280 write(const LightFlattenable<T>& val) argument
[all...]
/frameworks/native/include/utils/
H A DList.h50 explicit _Node(const T& val) : mVal(val) {} argument
56 inline void setVal(const T& val) { mVal = val; } argument
207 void push_front(const T& val) { insert(begin(), val); } local
208 void push_back(const T& val) { insert(end(), val); } local
211 iterator insert(iterator posn, const T& val) argument
213 _Node* newNode = new _Node(val); // allo
[all...]
H A DStrongPointer.h30 TextOutput& printStrongPointer(TextOutput& to, const void* val);
114 TextOutput& operator<<(TextOutput& to, const sp<T>& val);
211 inline TextOutput& operator<<(TextOutput& to, const sp<T>& val) argument
213 return printStrongPointer(to, val.get());
/frameworks/native/libs/binder/
H A DParcel.cpp615 status_t Parcel::writeInt32(int32_t val) argument
617 return writeAligned(val);
620 status_t Parcel::writeInt64(int64_t val) argument
622 return writeAligned(val);
625 status_t Parcel::writeFloat(float val) argument
627 return writeAligned(val);
630 status_t Parcel::writeDouble(double val) argument
632 return writeAligned(val);
635 status_t Parcel::writeIntPtr(intptr_t val) argument
637 return writeAligned(val);
680 writeStrongBinder(const sp<IBinder>& val) argument
685 writeWeakBinder(const wp<IBinder>& val) argument
784 write(const Flattenable& val) argument
820 writeObject(const flat_binder_object& val, bool nullMetaData) argument
918 writeAligned(T val) argument
1042 sp<IBinder> val; local
1043 unflatten_binder(ProcessState::self(), *this, &val); local
1049 wp<IBinder> val; local
1050 unflatten_binder(ProcessState::self(), *this, &val); local
[all...]
/frameworks/native/libs/utils/
H A DDebug.cpp59 static inline char makehexdigit(uint32_t val) argument
61 return "0123456789abcdef"[val&0xF];
64 static char* appendhexnum(uint32_t val, char* out) argument
67 *out++ = makehexdigit( val>>i );
73 static inline char makeupperhexdigit(uint32_t val) argument
75 return "0123456789ABCDEF"[val&0xF];
78 static char* appendupperhexnum(uint32_t val, char* out) argument
81 *out++ = makeupperhexdigit( val>>i );
253 const unsigned char val = *(pos+startIndex+(index*dir)); local
254 *c++ = makehexdigit(val>>
270 const unsigned char val = *(pos+startIndex+(index*dir)); local
288 const unsigned char val = pos[index]; local
[all...]
H A DLinearTransform.cpp30 uint64_t val,
49 // compute M = val * N (a 96 bit int)
51 // tmp2 = U32(val) * N (a 64 bit int)
52 // tmp1 = L32(val) * N (a 64 bit int)
54 // M = val * N = (tmp2 << 32) + tmp1
55 tmp2 = (val >> 32) * N;
56 tmp1 = (val & UINT32_MAX) * N;
60 // = (U32(val) * N) + U32(L32(val) * N)
78 // tmp1 = L32(val) *
29 scale_u64_to_u64( uint64_t val, uint32_t N, uint32_t D, uint64_t* res, bool round_up_not_down) argument
112 linear_transform_s64_to_s64( int64_t val, int64_t basis1, int32_t N, uint32_t D, bool invert_frac, int64_t basis2, int64_t* out) argument
[all...]
H A DRefBase.cpp615 TextOutput& printStrongPointer(TextOutput& to, const void* val) argument
617 to << "sp<>(" << val << ")"; local
621 TextOutput& printWeakPointer(TextOutput& to, const void* val) argument
623 to << "wp<>(" << val << ")"; local
H A DString16.cpp412 TextOutput& operator<<(TextOutput& to, const String16& val) argument
414 to << String8(val).string();
H A DString8.cpp453 TextOutput& operator<<(TextOutput& to, const String8& val) argument
455 to << val.string();
H A DTextOutput.cpp37 TextOutput& operator<<(TextOutput& to, bool val) argument
39 if (val) to.print("true", 4);
44 TextOutput& operator<<(TextOutput& to, int val) argument
47 sprintf(buf, "%d", val);
52 TextOutput& operator<<(TextOutput& to, long val) argument
55 sprintf(buf, "%ld", val);
60 TextOutput& operator<<(TextOutput& to, unsigned int val) argument
63 sprintf(buf, "%u", val);
68 TextOutput& operator<<(TextOutput& to, unsigned long val) argument
71 sprintf(buf, "%lu", val);
76 operator <<(TextOutput& to, long long val) argument
84 operator <<(TextOutput& to, unsigned long long val) argument
104 operator <<(TextOutput& to, float val) argument
109 operator <<(TextOutput& to, double val) argument
114 operator <<(TextOutput& to, const void* val) argument
127 operator <<(TextOutput& to, const TypeCode& val) argument
146 operator <<(TextOutput& to, const HexDump& val) argument
[all...]
H A DZipFileRO.cpp329 static unsigned int roundUpPower2(unsigned int val) argument
331 val--;
332 val |= val >> 1;
333 val |= val >> 2;
334 val |= val >> 4;
335 val |= val >>
[all...]
/frameworks/native/opengl/libagl/
H A Degl.cpp1128 static int isAttributeMatching(int i, EGLint attr, EGLint val) argument
1151 val, configFound[index].value);
1484 EGLint val = *attrib_list++; local
1488 if (isAttributeMatching(i, attr, val) == 0) {
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp263 uint32_t val; local
274 in >> val; local
276 dim.setWidth(val);
281 in >> val; local
283 dim.setHeight(val);
671 uint32_t val = pixel; local

Completed in 2109 milliseconds

12345