Home
last modified time | relevance | path

Searched refs:cc (Results 1 – 14 of 14) sorted by relevance

/system/core/libpixelflinger/codeflinger/
DARMAssemblerInterface.h122 dataProcessing( int opcode, int cc, int s,
127 virtual void MLA(int cc, int s,
129 virtual void MUL(int cc, int s,
131 virtual void UMULL(int cc, int s,
133 virtual void UMUAL(int cc, int s,
135 virtual void SMULL(int cc, int s,
137 virtual void SMUAL(int cc, int s,
141 virtual void B(int cc, uint32_t* pc) = 0;
142 virtual void BL(int cc, uint32_t* pc) = 0;
143 virtual void BX(int cc, int Rn) = 0;
[all …]
DARMAssemblerProxy.cpp160 void ARMAssemblerProxy::dataProcessing( int opcode, int cc, int s, in dataProcessing() argument
163 mTarget->dataProcessing(opcode, cc, s, Rd, Rn, Op2); in dataProcessing()
166 void ARMAssemblerProxy::MLA(int cc, int s, int Rd, int Rm, int Rs, int Rn) { in MLA() argument
167 mTarget->MLA(cc, s, Rd, Rm, Rs, Rn); in MLA()
169 void ARMAssemblerProxy::MUL(int cc, int s, int Rd, int Rm, int Rs) { in MUL() argument
170 mTarget->MUL(cc, s, Rd, Rm, Rs); in MUL()
172 void ARMAssemblerProxy::UMULL(int cc, int s, in UMULL() argument
174 mTarget->UMULL(cc, s, RdLo, RdHi, Rm, Rs); in UMULL()
176 void ARMAssemblerProxy::UMUAL(int cc, int s, in UMUAL() argument
178 mTarget->UMUAL(cc, s, RdLo, RdHi, Rm, Rs); in UMUAL()
[all …]
DARMAssemblerProxy.h79 virtual void dataProcessing(int opcode, int cc, int s,
82 virtual void MLA(int cc, int s,
84 virtual void MUL(int cc, int s,
86 virtual void UMULL(int cc, int s,
88 virtual void UMUAL(int cc, int s,
90 virtual void SMULL(int cc, int s,
92 virtual void SMUAL(int cc, int s,
95 virtual void B(int cc, uint32_t* pc);
96 virtual void BL(int cc, uint32_t* pc);
97 virtual void BX(int cc, int Rn);
[all …]
DARMAssembler.h90 virtual void dataProcessing(int opcode, int cc, int s,
93 virtual void MLA(int cc, int s,
95 virtual void MUL(int cc, int s,
97 virtual void UMULL(int cc, int s,
99 virtual void UMUAL(int cc, int s,
101 virtual void SMULL(int cc, int s,
103 virtual void SMUAL(int cc, int s,
106 virtual void B(int cc, uint32_t* pc);
107 virtual void BL(int cc, uint32_t* pc);
108 virtual void BX(int cc, int Rn);
[all …]
DARMAssembler.cpp119 void ARMAssembler::B(int cc, const char* label) in B() argument
122 *mPC++ = (cc<<28) | (0xA<<24) | 0; in B()
125 void ARMAssembler::BL(int cc, const char* label) in BL() argument
128 *mPC++ = (cc<<28) | (0xB<<24) | 0; in BL()
216 void ARMAssembler::dataProcessing(int opcode, int cc, in dataProcessing() argument
219 *mPC++ = (cc<<28) | (opcode<<21) | (s<<20) | (Rn<<16) | (Rd<<12) | Op2; in dataProcessing()
228 void ARMAssembler::MLA(int cc, int s, in MLA() argument
232 *mPC++ = (cc<<28) | (1<<21) | (s<<20) | in MLA()
235 void ARMAssembler::MUL(int cc, int s, in MUL() argument
239 *mPC++ = (cc<<28) | (s<<20) | (Rd<<16) | (Rs<<8) | 0x90 | Rm; in MUL()
[all …]
DMIPSAssembler.h90 virtual void dataProcessing(int opcode, int cc, int s,
93 virtual void MLA(int cc, int s,
95 virtual void MUL(int cc, int s,
97 virtual void UMULL(int cc, int s,
99 virtual void UMUAL(int cc, int s,
101 virtual void SMULL(int cc, int s,
103 virtual void SMUAL(int cc, int s,
106 virtual void B(int cc, uint32_t* pc);
107 virtual void BL(int cc, uint32_t* pc);
108 virtual void BX(int cc, int Rn);
[all …]
DMIPSAssembler.cpp417 void ArmToMipsAssembler::dataProcessing(int opcode, int cc, in dataProcessing() argument
423 if (cc != AL) { in dataProcessing()
427 ArmToMipsAssembler::B(cc^1, cond.label[++cond.labelnum]); in dataProcessing()
596 if (cc != AL) { in dataProcessing()
613 void ArmToMipsAssembler::MLA(int cc, int s, in MLA() argument
626 void ArmToMipsAssembler::MUL(int cc, int s, in MUL() argument
636 void ArmToMipsAssembler::UMULL(int cc, int s, in UMULL() argument
649 void ArmToMipsAssembler::UMUAL(int cc, int s, in UMUAL() argument
665 void ArmToMipsAssembler::SMULL(int cc, int s, in SMULL() argument
680 void ArmToMipsAssembler::SMUAL(int cc, int s, in SMUAL() argument
[all …]
DGGLAssembler.cpp707 int cc = NV; in build_alpha_test() local
709 case GGL_NEVER: cc = NV; break; in build_alpha_test()
710 case GGL_LESS: cc = LT; break; in build_alpha_test()
711 case GGL_EQUAL: cc = EQ; break; in build_alpha_test()
712 case GGL_LEQUAL: cc = LS; break; in build_alpha_test()
713 case GGL_GREATER: cc = HI; break; in build_alpha_test()
714 case GGL_NOTEQUAL: cc = NE; break; in build_alpha_test()
715 case GGL_GEQUAL: cc = HS; break; in build_alpha_test()
717 B(cc^1, "discard_after_textures"); in build_alpha_test()
732 int cc=AL, ic=AL; in build_depth_test() local
[all …]
/system/core/libutils/
DFileMap.cpp205 int cc, sysAdvice; in advise() local
218 cc = madvise(mBasePtr, mBaseLength, sysAdvice); in advise()
219 if (cc != 0) in advise()
221 return cc; in advise()
/system/core/cpio/
Dmkbootfs.c299 struct fs_config_entry* cc = canned_config + used; in read_canned_config() local
302 cc->name = strdup(""); in read_canned_config()
303 cc->uid = atoi(strtok(line, " \n")); in read_canned_config()
305 cc->name = strdup(strtok(line, " \n")); in read_canned_config()
306 cc->uid = atoi(strtok(NULL, " \n")); in read_canned_config()
308 cc->gid = atoi(strtok(NULL, " \n")); in read_canned_config()
309 cc->mode = strtol(strtok(NULL, " \n"), NULL, 8); in read_canned_config()
/system/core/libcutils/
Dproperties.c105 int cc; in connectToServer() local
118 cc = connect(sock, (struct sockaddr*) &addr, SUN_LEN(&addr)); in connectToServer()
119 if (cc < 0) { in connectToServer()
/system/core/liblog/
Dfake_log_device.c512 int cc = writev(fileno(stderr), vec, v-vec); in showLog() local
514 if (cc == totalLen) break; in showLog()
516 if (cc < 0) { in showLog()
524 fprintf(stderr, "+++ LOG: write partial (%d of %d)\n", cc, totalLen); in showLog()
/system/core/sh/
Djobs.c1396 char c, cc[2] = " "; in cmdputs() local
1469 cc[0] = c; in cmdputs()
1470 str = cc; in cmdputs()
Dparser.c1328 int cc = c; in readtoken1() local
1332 if (c == cc) in readtoken1()