Searched refs:type (Results 51 - 75 of 104) sorted by relevance

12345

/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.h71 virtual uint32_t reg_imm(int Rm, int type, uint32_t shift);
73 virtual uint32_t reg_reg(int Rm, int type, int Rs);
80 virtual uint32_t reg_scale_pre(int Rm, int type=0, uint32_t shift=0, int W=0);
81 virtual uint32_t reg_scale_post(int Rm, int type=0, uint32_t shift=0);
H A DARMAssemblerProxy.h59 virtual uint32_t reg_imm(int Rm, int type, uint32_t shift);
61 virtual uint32_t reg_reg(int Rm, int type, int Rs);
68 virtual uint32_t reg_scale_pre(int Rm, int type=0, uint32_t shift=0, int W=0);
69 virtual uint32_t reg_scale_post(int Rm, int type=0, uint32_t shift=0);
H A DARMAssembler.cpp510 uint32_t ARMAssembler::reg_imm(int Rm, int type, uint32_t shift) argument
512 return ((shift&0x1F)<<7) | ((type&0x3)<<5) | (Rm&0xF);
520 uint32_t ARMAssembler::reg_reg(int Rm, int type, int Rs) argument
522 return ((Rs&0xF)<<8) | ((type&0x3)<<5) | (1<<4) | (Rm&0xF);
545 uint32_t ARMAssembler::reg_scale_pre(int Rm, int type, argument
550 reg_imm(abs(Rm), type, shift);
553 uint32_t ARMAssembler::reg_scale_post(int Rm, int type, uint32_t shift) argument
555 return (1<<25) | (((uint32_t(Rm)>>31)^1)<<23) | reg_imm(abs(Rm), type, shift);
H A DMIPSAssembler.cpp234 uint32_t ArmToMipsAssembler::reg_imm(int Rm, int type, uint32_t shift) argument
237 amode.stype = type;
248 uint32_t ArmToMipsAssembler::reg_reg(int Rm, int type, int Rs) argument
277 uint32_t ArmToMipsAssembler::reg_scale_pre(int Rm, int type, argument
280 LOG_ALWAYS_FATAL_IF(W | type | shift, "reg_scale_pre adv modes not yet implemented");
283 // amode.stype = type; // more advanced modes not used in GGLAssembler yet
289 uint32_t ArmToMipsAssembler::reg_scale_post(int Rm, int type, uint32_t shift) argument
361 if (cond.type == CMP_COND && Rd == cond.r2) {
574 cond.type = CMP_COND;
600 cond.type
[all...]
/system/extras/tests/bionic/libc/common/
H A Dtest_pthread_mutex.c122 static void set_mutexattr_type(pthread_mutexattr_t *attr, int type) argument
125 TZERO(pthread_mutexattr_settype(attr, type));
126 newtype = ~type;
128 TEXPECT_INT(newtype,type);
134 int ret, type; local
/system/security/keystore/
H A Dkeystore.cpp259 * the second is the blob's type, and the third byte is reserved. Fields other
279 uint8_t type; member in struct:blob
300 Blob(uint8_t* value, int32_t valueLength, uint8_t* info, uint8_t infoLength, BlobType type) { argument
308 mBlob.type = uint8_t(type);
342 return BlobType(mBlob.type);
345 void setType(BlobType type) { argument
346 mBlob.type = uint8_t(type);
592 ResponseCode get(const char* filename, Blob* keyBlob, const BlobType type) { argument
775 upgrade(const char* filename, Blob* blob, const uint8_t oldVersion, const BlobType type) argument
895 get_key_for_name(KeyStore* keyStore, Blob* keyBlob, const Value* keyName, const uid_t uid, const BlobType type) argument
[all...]
/system/core/adb/
H A Dsysdeps.h170 extern int socket_loopback_client(int port, int type);
171 extern int socket_network_client(const char *host, int port, int type);
172 extern int socket_loopback_server(int port, int type);
173 extern int socket_inaddr_any_server(int port, int type);
445 static __inline__ int unix_socketpair( int d, int type, int protocol, int sv[2] ) argument
447 return socketpair( d, type, protocol, sv );
H A Dsysdeps_win32.c579 int socket_loopback_client(int port, int type) argument
596 s = socket(AF_INET, type, 0);
605 D("socket_loopback_client: could not connect to %s:%d\n", type != SOCK_STREAM ? "udp" : "tcp", port );
609 snprintf( f->name, sizeof(f->name), "%d(lo-client:%s%d)", _fh_to_int(f), type != SOCK_STREAM ? "udp:" : "", port );
610 D( "socket_loopback_client: port %d type %s => fd %d\n", port, type != SOCK_STREAM ? "udp" : "tcp", _fh_to_int(f) );
616 int socket_loopback_server(int port, int type) argument
635 s = socket(AF_INET, type, 0);
647 if (type == SOCK_STREAM) {
656 snprintf( f->name, sizeof(f->name), "%d(lo-server:%s%d)", _fh_to_int(f), type !
662 socket_network_client(const char *host, int port, int type) argument
704 socket_inaddr_any_server(int port, int type) argument
[all...]
H A Dadb.c432 char *type; local
435 type = banner;
436 cp = strchr(type, ':');
461 if(!strcmp(type, "bootloader")){
468 if(!strcmp(type, "device")) {
475 if(!strcmp(type, "recovery")) {
482 if(!strcmp(type, "sideload")) {
815 static BOOL WINAPI ctrlc_handler(DWORD type) argument
1355 transport_type type = kTransportAny; local
1358 type
[all...]
H A Dtransport_usb.c121 t->type = kTransportUsb;
H A Dadb_client.c21 void adb_set_transport(transport_type type, const char* serial) argument
23 __adb_transport = type;
/system/core/libcutils/
H A Dmq.c90 PacketType type; member in struct:__anon395
539 PacketType type = current->header.type; local
540 switch (type) {
553 LOG_ALWAYS_FATAL("Unknown packet type: %d", type);
643 packet->header.type = CONNECTION_REQUEST;
829 packetA->header.type = CONNECTION;
830 packetB->header.type = CONNECTION;
860 packet->header.type
[all...]
H A Dtzstrftime.c60 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
64 #define TYPE_SIGNED(type) (((type) -1) < 0)
70 * ** Subtract one for the sign bit if the type is signed;
72 * ** add one more for a minus sign if the type is signed.
74 #define INT_STRLEN_MAXIMUM(type) \
75 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + \
76 1 + TYPE_SIGNED(type))
[all...]
/system/extras/fatblock/
H A Dread.c141 switch (e->type) {
156 WARN("reading extent: unexpected type %d\n", e->type);
H A Dfat.h55 char type[8]; member in struct:fat_boot_sector
/system/core/init/
H A Dinit.h54 const char *type; member in struct:socketinfo
H A Dparser.c31 RAW(" socket %s %s 0%o\n", si->name, si->type, si->perm);
/system/core/liblog/
H A Dlogd_write.c264 * Like __android_log_bwrite, but takes the type as well. Doesn't work
268 int __android_log_btwrite(int32_t tag, char type, const void *payload, argument
275 vec[1].iov_base = &type;
276 vec[1].iov_len = sizeof(type);
/system/core/toolbox/
H A Dlsof.c71 void print_type(char *type, struct pid_info_t* info) argument
76 strncat(info->path, type, sizeof(info->path));
91 info->cmdline, info->pid, info->user, type,
H A Dgetevent.c193 static void print_event(int type, int code, int value, int print_flags) argument
198 type_label = get_label(ev_labels, type);
202 switch(type) {
246 printf("%04x ", type);
256 printf("%04x %04x %08x", type, code, value);
650 print_event(event.type, event.code, event.value, print_flags);
651 if(sync_rate && event.type == 0 && event.code == 0) {
/system/extras/tests/sdcard/
H A Dtestcase.h120 Type type() const { return mType; } function in class:android_test::TestCase
/system/core/include/cutils/
H A Dlog.h450 #define android_btWriteLog(tag, type, payload, len) \
451 __android_log_btwrite(tag, type, payload, len)
/system/core/libpixelflinger/
H A Draster.cpp30 GGLsizei width, GGLsizei height, GGLenum type);
54 GGLsizei width, GGLsizei height, GGLenum type)
53 ggl_copyPixels(void* con, GGLint xs, GGLint ys, GGLsizei width, GGLsizei height, GGLenum type) argument
/system/core/sh/
H A Deval.c231 getpid(), n, n->type, flags));
232 switch (n->type) {
300 out1fmt("Node type = %d\n", n->type);
330 if (n->type == NWHILE) {
427 int backgnd = (n->type == NBACKGND);
459 switch (redir->type) {
573 if (n->type == NCMD) {
813 /* use 'type' builting to display info */
1106 if (n->type
[all...]
/system/security/keystore-engine/
H A Deng_keystore.cpp153 ALOGE("Unknown padding type: %d", padding);
235 switch (EVP_PKEY_type(pkey->type)) {
257 ALOGE("Unsupported key type %d", EVP_PKEY_type(pkey->type));

Completed in 1221 milliseconds

12345