Searched refs:str (Results 26 - 50 of 413) sorted by path

1234567891011>>

/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/
H A Dband_nrg_v5.s70 str r14, [r3, +r4, lsl #2]
78 str r9, [r12, #0]
107 str r3, [r13, #4]
108 str r4, [r13, #8]
109 str r12, [r13, #12]
110 str r14, [r13, #16]
187 str r6, [r8, +r4, lsl #2]
188 str r7, [r9, +r4, lsl #2]
197 str r12, [r8, #0]
198 str r1
[all...]
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Ddeblock.cpp303 void* str; local
330 str = (void*)Strength; //de-ref type-punned pointer fix
331 if (*((uint32*)str)) // only if one of the 4 Strength bytes is != 0
437 str = (void*)Strength; //de-ref type-punned pointer fix
438 if (*((uint32*)str)) // only if one of the 4 Strength bytes is != 0
/frameworks/av/media/libstagefright/codecs/mp3dec/src/asm/
H A Dpvmp3_dct_16_gcc.s56 str r2,[sp,#0x14]
65 str r3,[sp]
87 str r4,[sp,#4]
95 str lr,[sp,#0x10]
112 str r9,[sp,#0xc]
115 str r9,[sp,#0x18]
120 str r9,[sp,#8]
140 str r8,[r0]
143 str r8,[r0,#0x20]
148 str r
[all...]
H A Dpvmp3_dct_9_gcc.s66 str r7,[r0, #0x18]
68 str r10,[r0,#0]
117 str r2,[r0,#8]
123 str r7,[r0,#0x20]
137 str r8,[r0, #0x10]
149 str r6,[r0, #4]
150 str lr,[r0, #0xc]
162 str lr,[r0, #0x14]
173 str r1,[r0, #0x1c]
H A Dpvmp3_mdct_18_gcc.s83 str r9,[r0],#4
87 str lr,[r1],#-4
99 str r0,[r5,#0x40]
102 str r0,[r5,#0x38]
105 str r1,[r5,#0x30]
108 str r12,[r5,#0x28]
110 str r12,[r5,#0x20]
112 str r12,[r5,#0x18]
114 str r12,[r5,#0x10]
116 str r1
[all...]
H A Dpvmp3_polyphase_filter_window_gcc.s57 str r2,[sp]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM.h69 #define armError(str) {printf((str)); printf("\n"); exit(-1);}
70 #define armWarn(str) {printf((str)); printf("\n");}
75 #define armError(str) ((void) (str))
76 #define armWarn(str) ((void) (str))
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A DarmCOMM.h69 #define armError(str) {printf((str)); printf("\n"); exit(-1);}
70 #define armWarn(str) {printf((str)); printf("\n");}
75 #define armError(str) ((void) (str))
76 #define armWarn(str) ((void) (str))
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
H A DomxVCM4P10_TransformDequantChromaDCFromPair_s.S49 str r9, [r0, #0]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
H A DarmCOMM.h69 #define armError(str) {printf((str)); printf("\n"); exit(-1);}
70 #define armWarn(str) {printf((str)); printf("\n");}
75 #define armError(str) ((void) (str))
76 #define armWarn(str) ((void) (str))
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c71 #define DEC_API_TRC(str) H264SwDecTrace(str)
73 #define DEC_API_TRC(str)
163 sprintf(pDecCont->str, "H264SwDecInit# decInst %p noOutputReordering %d",
165 DEC_API_TRC(pDecCont->str);
179 sprintf(pDecCont->str, "H264SwDecInit# OK: return %p", (void*)pDecCont);
180 DEC_API_TRC(pDecCont->str);
233 sprintf(((decContainer_t*)decInst)->str,
235 DEC_API_TRC(((decContainer_t*)decInst)->str);
302 sprintf(pDecCont->str, "H264SwDecReleas
[all...]
H A Dh264bsd_container.h60 char str[H264DEC_TRACE_STR_LEN]; member in struct:__anon636
/frameworks/av/media/libstagefright/foundation/
H A DAStringUtils.cpp30 const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase) {
38 if (strLen < globIx || Compare(str, glob, globIx /* len */, ignoreCase)) {
58 const char *tail = str + strLen - len;
62 while (ix + len <= strLen && Compare(str + ix, pattern, len, ignoreCase)) {
29 MatchesGlob( const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase) argument
/frameworks/av/media/libstagefright/httplive/
H A DM3UParser.cpp1308 bool M3UParser::isQuotedString(const AString &str) { argument
1309 if (str.size() < 2
1310 || str.c_str()[0] != '"'
1311 || str.c_str()[str.size() - 1] != '"') {
1318 AString M3UParser::unquoteString(const AString &str) { argument
1319 if (!isQuotedString(str)) {
1320 return str;
1322 return AString(str, 1, str
[all...]
H A DM3UParser.h114 static bool isQuotedString(const AString &str);
115 static AString unquoteString(const AString &str);
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.cpp181 WebmString::WebmString(uint64_t id, const char *str) argument
182 : WebmElement(id, strlen(str)), mStr(str) {
H A DWebmElement.h101 WebmString(uint64_t id, const char *str);
/frameworks/av/media/mtp/
H A DMtpProperty.cpp104 free(mDefaultValue.str);
105 free(mCurrentValue.str);
106 free(mMinimumValue.str);
107 free(mMaximumValue.str);
110 free(mDefaultArrayValues[i].str);
114 free(mCurrentArrayValues[i].str);
118 free(mEnumValues[i].str);
220 free(mDefaultValue.str);
223 mDefaultValue.str = strdup(buffer);
226 mDefaultValue.str
[all...]
H A DMtpProperty.h40 char* str; member in struct:android::MtpPropertyValue
/frameworks/av/services/audioflinger/
H A DFastCaptureState.cpp33 const char *str = FastThreadState::commandToString(command); local
34 if (str != NULL) {
35 return str;
H A DFastMixerState.cpp56 const char *str = FastThreadState::commandToString(command); local
57 if (str != NULL) {
58 return str;
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DSerializer.h226 status_t deserialize(const char *str, AudioPolicyConfig &config);
H A DTypeConverter.h86 static void collectionFromString(const std::string &str, typename Traits::Collection &collection, argument
89 char *literal = strdup(str.c_str());
103 static bool toString(const typename Traits::Type &value, std::string &str);
105 static bool fromString(const std::string &str, typename Traits::Type &result);
107 static void collectionFromString(const std::string &str,
111 static uint32_t maskFromString(const std::string &str, const char *del = "|");
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DSerializer.cpp584 mVersion = oss.str();
H A DTypeConverter.cpp235 bool TypeConverter<Traits>::toString(const typename Traits::Type &value, std::string &str) argument
239 str = mTable[i].literal;
247 bool TypeConverter<Traits>::fromString(const std::string &str, typename Traits::Type &result) argument
250 if (strcmp(mTable[i].literal, str.c_str()) == 0) {
260 void TypeConverter<Traits>::collectionFromString(const std::string &str, argument
264 char *literal = strdup(str.c_str());
276 uint32_t TypeConverter<Traits>::maskFromString(const std::string &str, const char *del) argument
278 char *literal = strdup(str.c_str());

Completed in 1398 milliseconds

1234567891011>>