bom               288 source4/heimdal/lib/wind/utf8.c 	uint16_t bom = (p[0] << 8) + p[1];
bom               289 source4/heimdal/lib/wind/utf8.c 	if (bom == 0xfffe || bom == 0xfeff) {
bom               290 source4/heimdal/lib/wind/utf8.c 	    little = (bom == 0xfffe);
bom               347 source4/heimdal/lib/wind/utf8.c 	uint16_t bom = 0xfffe;
bom               353 source4/heimdal/lib/wind/utf8.c 	    p[0] = (bom >> 8) & 0xff;
bom               354 source4/heimdal/lib/wind/utf8.c 	    p[1] = (bom     ) & 0xff;
bom               356 source4/heimdal/lib/wind/utf8.c 	    p[1] = (bom     ) & 0xff;
bom               357 source4/heimdal/lib/wind/utf8.c 	    p[0] = (bom >> 8) & 0xff;