gonzui


Format: Advanced Search

SearchGoogle itResults 11 - 16 of 16 for funcall:memcmp from t2ex (0.01 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/sys/systm.h - 18.1KB - 562 lines
277: #define bzero(src, len)         memset((src), 0, (len))
278: #define bcmp(a, b, len)         memcmp((a), (b), (len))
279: #endif /* KERNEL */
bsd_source/t2ex/network/net/src_bsdlib/libc/net/gethnamaddr.c - 48.5KB - 1,584 lines
1087:         while ((p = _gethtent()) != NULL)
1088:                 if (p->h_addrtype == af && !memcmp(p->h_addr, addr,
1089:                     (size_t)len))
t2ex_source/kernel/sysmain/src/network_sample/net_test.c - 12.1KB - 415 lines
236:         DEBUG_PRINT(("server_task: so_read = %d(%d, %d), buf = %s\n", re, MERCD(re), SERCD(re), buf));
237:         if ( re < 0 || memcmp(buf, "1234", 4) != 0 ) {
238:                 goto error;
t2ex_source/t2ex/fs/fimp/src/fimp_fat.c - 201.0KB - 6,353 lines
2903:                 if (enc != FAT_CHG_WITH_N &&
2904:                         memcmp((B*)dirent->de_fname,
2905:                                         (B*)sfname, BASE_EXTLEN) == 0) {
More results from fimp_fat.c
t2ex_source/t2ex/network/net/src/netmain/if_tkn.c - 28.4KB - 1,184 lines
80: 
81: #define ETHER_CMP(a, b)       memcmp(a, b, ETHER_ADDR_LEN)
82: 
t2ex_source/t2ex/network/net/src/netmain/tkn_resctl.c - 9.2KB - 311 lines
140:         }
141:         if( memcmp( x->addr, y->addr, y->addr->sa_len ) != 0 ) {
142:                 return 1;