Searched defs:pb (Results 1 - 5 of 5) sorted by relevance

/system/extras/ksmutils/
H A Dlookup3.c213 32-bit values. pc and pb must both be nonnull, and *pc and *pb must
214 both be initialized with seeds. If you pass in (*pb)==0, the output
222 uint32_t *pb) /* IN: more seed OUT: secondary hash value */
228 c += *pb;
252 *pc=c; *pb=b;
460 * the key. *pc is better mixed than *pb, so use *pc first. If you want
461 * a 64-bit value do something like "*pc + (((uint64_t)*pb)<<32)".
467 uint32_t *pb) /* IN: secondary initval, OUT: secondary hash */
474 c += *pb;
218 hashword2( const uint32_t *k, size_t length, uint32_t *pc, uint32_t *pb) argument
463 hashlittle2( const void *key, size_t length, uint32_t *pc, uint32_t *pb) argument
[all...]
/system/extras/latencytop/
H A Dlatencytop.c436 const struct latency_entry *pa, *pb; local
439 pb = (*((struct latency_entry **)b));
441 return numcmp(pb->max, pa->max);
/system/core/adb/
H A Dfdevent.c331 char msg_buff[FD_SETSIZE*6 + 1], *pb=msg_buff; local
336 printed_out = snprintf(pb, max_chars, __VA_ARGS__); \
345 pb += printed_out; \
H A Dtransport.c49 char buffer[MAX_DUMP_HEX_LEN *2 + 1 + MAX_DUMP_HEX_LEN + 1 ], *pb = buffer; local
54 sprintf(pb, "%02x", ptr[nn]);
55 pb += 2;
57 sprintf(pb++, " ");
63 *pb++ = c;
65 *pb++ = '\0';
/system/core/toolbox/
H A Dtop.c509 struct proc_info *pa, *pb; local
511 pa = *((struct proc_info **)a); pb = *((struct proc_info **)b);
513 if (!pa && !pb) return 0;
515 if (!pb) return -1;
517 return -numcmp(pa->delta_time, pb->delta_time);
521 struct proc_info *pa, *pb; local
523 pa = *((struct proc_info **)a); pb = *((struct proc_info **)b);
525 if (!pa && !pb) return 0;
527 if (!pb) return -1;
529 return -numcmp(pa->vss, pb
533 struct proc_info *pa, *pb; local
545 struct proc_info *pa, *pb; local
[all...]

Completed in 150 milliseconds