/vbox/src/libs/xpcom18a4/xpcom/typelib/xpt/src/ |
H A D | xpt_arena.c | 124 size_t space; member in struct:XPTArena 166 /* fudge the stats since we are using space in the arena */ 208 * so that the 'arena->next' pointer one will point to properly aligned space. 229 if (bytes > arena->space) { 245 arena->space = 0; 260 arena->space = new_space - block_header_size; 264 memset(arena->next, 0xcd, arena->space); 282 arena->space -= bytes;
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | tcp_out.c | 206 * Allocate a PBUF_RAM pbuf, perhaps with extra space at the end. 426 u16_t space; local 433 /* Usable space at the end of the last unsent segment */ 435 space = mss_local - (last_unsent->len + unsent_optlen); 452 LWIP_ASSERT("inconsistent oversize vs. space", oversize_used <= space); 457 space -= oversize_used; 470 if ((pos < len) && (space > 0) && (last_unsent->len > 0)) { 471 u16_t seglen = space < len - pos ? space [all...] |
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/slang/ |
H A D | slang_typeinfo.h | 61 slang_name_space space; member in struct:slang_assemble_ctx_ 75 const slang_name_space *space,
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prprf.c | 120 char space = ' '; local 126 space = '0'; 129 rv = (*ss->stuff)(ss, &space, 1); 144 rv = (*ss->stuff)(ss, &space, 1); 409 ** detemine how many legal % I have got, then allocate space
|
/vbox/src/VBox/Devices/Network/slirp/bsd/kern/ |
H A D | uipc_mbuf.c | 78 &max_datalen, 0, "Minimum space left in mbuf after max_hdr"); 421 M_SANITY_ACTION("m_data + m_len exeeds mbuf space"); 742 /* Shortcut if enough free space in first/last mbuf. */ 1155 int space; local 1179 space = &m->m_dat[MLEN] - (m->m_data + m->m_len); 1181 count = min(min(max(len, max_protohdr), space), n->m_len); 1187 space -= count; 1219 * the amount of empty space before the data in the new mbuf to be specified 1232 int count, space; local 1243 space 1509 int remainder, space; local [all...] |
/vbox/src/libs/xpcom18a4/xpcom/ds/ |
H A D | nsTextFormatter.cpp | 245 PRUnichar space = ' '; local 252 space = '0'; 255 rv = (*ss->stuff)(ss, &space, 1); 271 rv = (*ss->stuff)(ss, &space, 1); 294 PRUnichar space = ' '; local 339 rv = (*ss->stuff)(ss, &space, 1); 351 rv = (*ss->stuff)(ss, &space, 1); 367 rv = (*ss->stuff)(ss, &space, 1); 715 ** detemine how many legal % I have got, then allocate space 982 PRUnichar space local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | sky2.c | 803 static void sky2_ramset(struct sky2_hw *hw, u16 q, u32 start, u32 space) argument 809 space *= 1024/8; 810 end = start + space - 1; 819 u32 tp = space - space/4; 826 sky2_write32(hw, RB_ADDR(q, RB_RX_LTHP), space/2); 828 tp = space - 2048/8; 830 sky2_write32(hw, RB_ADDR(q, RB_RX_LTPP), space/4);
|
H A D | etherfabric.c | 3267 /* If the device has EEPROM attached, then advertise NVO space */ 3650 int space = EFAB_NUM_RX_DESC - fill_level - 1; local 3653 while ( space ) { 3672 --space; 3730 int fill_level, space; local 3735 space = EFAB_TXD_SIZE - fill_level - 1; 3736 if ( space < 1 )
|
/vbox/src/libs/libxml2-2.6.31/include/libxml/ |
H A D | parser.h | 240 /* xml:space values */ 241 int * space; /* Should the parser preserve spaces */ member in struct:_xmlParserCtxt 244 int * spaceTab; /* array of space infos */
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | tree.c | 202 * Builds the QName @prefix:@ncname in @memory if there is enough space 352 * @space: allow spaces in front and end of the string 354 * Check that a value conforms to the lexical space of NCName 360 xmlValidateNCName(const xmlChar *value, int space) { argument 370 if (space) 382 if (space) 393 if (space) { 409 if (space) { 426 * @space: allow spaces in front and end of the string 428 * Check that a value conforms to the lexical space o 434 xmlValidateQName(const xmlChar *value, int space) argument 532 xmlValidateName(const xmlChar *value, int space) argument 601 xmlValidateNMToken(const xmlChar *value, int space) argument 4714 xmlChar *space; local [all...] |
H A D | testapi.c | 6470 char * pathss; /* a list of directories separated by a colon or a space. */ 22471 int val; /* the xml:space value ("0": default, 1: "preserve") */ 23602 int space; /* allow spaces in front and end of the string */ local 23609 space = gen_int(n_space, 1); 23611 ret_val = xmlValidateNCName((const xmlChar *)value, space); 23615 des_int(n_space, space, 1); 23645 int space; /* allow spaces in front and end of the string */ local 23652 space = gen_int(n_space, 1); 23654 ret_val = xmlValidateNMToken((const xmlChar *)value, space); 23658 des_int(n_space, space, 23688 int space; /* allow spaces in front and end of the string */ local 23731 int space; /* allow spaces in front and end of the string */ local [all...] |
/vbox/src/libs/libxml2-2.6.31/python/ |
H A D | libxml2-py.c | 2808 int space; local 2810 if (!PyArg_ParseTuple(args, (char *)"zi:xmlValidateQName", &value, &space)) 2813 c_retval = xmlValidateQName(value, space); 3826 int space; local 3828 if (!PyArg_ParseTuple(args, (char *)"zi:xmlValidateName", &value, &space)) 3831 c_retval = xmlValidateName(value, space); 7040 int space; local 7042 if (!PyArg_ParseTuple(args, (char *)"zi:xmlValidateNCName", &value, &space)) 7045 c_retval = xmlValidateNCName(value, space); 12477 int space; local [all...] |
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | saaj-impl.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ... |
H A D | jaxb-xjc.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ... |