Searched defs:tmp16 (Results 1 - 3 of 3) sorted by relevance
/vbox/src/libs/libpng-1.2.8/contrib/pngminus/ |
H A D | pnm2png.c | 209 png_uint_32 tmp16; local 354 tmp16 = get_value (pnm_file, bit_depth); 355 *pix_ptr = (png_byte) ((tmp16 >> 8) & 0xFF); 357 *pix_ptr = (png_byte) (tmp16 & 0xFF); 371 tmp16 = get_value (alpha_file, bit_depth); 372 *pix_ptr++ = (png_byte) ((tmp16 >> 8) & 0xFF); 373 *pix_ptr++ = (png_byte) (tmp16 & 0xFF);
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | prism2.c | 772 UINT16 tmp16 = 0; local 793 tmp16 = WLAN_DATA_MAXLEN; /* Set maximum data length */ 794 result = hfa384x_drvr_setconfig16(hw, HFA384x_RID_CNFMAXDATALEN, &tmp16); 796 tmp16 = 0x000f; /* Set transmit rate(?) */ 797 result = hfa384x_drvr_setconfig16(hw, HFA384x_RID_TXRATECNTL, &tmp16); 799 tmp16 = HFA384x_CNFAUTHENTICATION_OPENSYSTEM; /* Set authentication type to OpenSystem */ 800 result = hfa384x_drvr_setconfig16(hw, HFA384x_RID_CNFAUTHENTICATION, &tmp16); 804 for ( tmp16=0; tmp16<sizeof(hardcoded_ssid); tmp16 [all...] |
/vbox/src/VBox/Storage/ |
H A D | VHD.cpp | 271 PRTUTF16 tmp16 = NULL; local 274 rc = RTStrToUtf16(pszFilename, &tmp16); 277 cTmp16Len = RTUtf16Len(tmp16); 278 if (cTmp16Len * sizeof(*tmp16) > cbBufSize) 286 pu16Buf[i] = RT_H2BE_U16(tmp16[i]); 288 memcpy(pu16Buf, tmp16, cTmp16Len * sizeof(*tmp16)); 290 *pcbActualSize = (uint32_t)(cTmp16Len * sizeof(*tmp16)); 293 if (tmp16) 294 RTUtf16Free(tmp16); [all...] |
Completed in 247 milliseconds