Searched defs:comment (Results 1 - 4 of 4) sorted by relevance

/system/core/libzipfile/
H A Dprivate.h34 const unsigned char* comment; //mComment; member in struct:Zipfile
/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.cpp98 ssize_t comment = mComments.indexOfKey(i); local
99 if (comment >= 0) {
100 printf("; %s\n", mComments.valueAt(comment));
108 void ARMAssembler::comment(const char* string) function in class:android::ARMAssembler
361 void ARMAssembler::SWI(int cc, uint32_t comment) { argument
362 *mPC++ = (cc<<28) | (0xF<<24) | comment;
H A DARMAssemblerProxy.cpp68 void ARMAssemblerProxy::comment(const char* string) { function in class:android::ARMAssemblerProxy
69 mTarget->comment(string);
249 void ARMAssemblerProxy::SWI(int cc, uint32_t comment) { argument
250 mTarget->SWI(cc, comment);
H A DMIPSAssembler.cpp132 void ArmToMipsAssembler::comment(const char* string) function in class:android::ArmToMipsAssembler
134 mMips->comment(string);
1019 void ArmToMipsAssembler::SWI(int cc, uint32_t comment) { argument
1020 // *mPC++ = (cc<<28) | (0xF<<24) | comment;
1353 ssize_t comment = mComments.indexOfKey(mipsPC); local
1354 if (comment >= 0) {
1355 ALOGW("; %s\n", mComments.valueAt(comment));
1366 void MIPSAssembler::comment(const char* string) function in class:android::MIPSAssembler

Completed in 34 milliseconds