Searched refs:tmpbuf (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/pexpert/arm/
H A Dpe_omap3430.c419 char tmpbuf[16];
422 if (PE_parse_boot_argn("omapfbres", tmpbuf, sizeof(tmpbuf))) {
425 if (!strcmp(tmpbuf, omap_videomodes[cur].name)) {
H A Dpe_omap3530.c457 char tmpbuf[16]; local
460 if (PE_parse_boot_argn("omapfbres", tmpbuf, sizeof(tmpbuf))) {
463 if (!strcmp(tmpbuf, modes[cur].name)) {
/darwin-on-arm/xnu/libkern/c++/
H A DOSUnserializeXML.y551 unsigned char *tmpbuf = (unsigned char *)malloc(DATA_ALLOC_SIZE);
559 free(tmpbuf);
574 tmpbuf = (unsigned char *)realloc(tmpbuf, tmpbuflen);
576 tmpbuf[tmpbufpos++] = (acc >> 16) & 0xff;
578 tmpbuf[tmpbufpos++] = (acc >> 8) & 0xff;
580 tmpbuf[tmpbufpos++] = acc & 0xff;
586 free(tmpbuf);
589 return tmpbuf;
/darwin-on-arm/xnu/bsd/dev/vn/
H A Dvn.c354 char * tmpbuf; local
356 tmpbuf = _MALLOC(vn->sc_secsize, M_TEMP, M_WAITOK);
357 if (tmpbuf == NULL) {
362 tmpbuf, (off_t)file_block * vn->sc_secsize,
369 tmpbuf, (off_t)shadow_block * vn->sc_secsize,
372 FREE(tmpbuf, M_TEMP);
1289 char *tmpbuf; local
1298 tmpbuf = _MALLOC(DEV_BSIZE, M_TEMP, M_WAITOK);
1299 error = file_io(vp, &context, UIO_READ, tmpbuf, 0, DEV_BSIZE, NULL);
1300 FREE(tmpbuf, M_TEM
[all...]

Completed in 23 milliseconds