/vbox/src/libs/xpcom18a4/python/test/ |
H A D | test_test_component.js | 135 var out = []; variable 136 c.DoubleStringArray(count, out);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | stdio.c | 60 PRFileDesc *out = PR_GetSpecialFD(PR_StandardOutput); local 64 out, "This to standard out\n", 65 strlen("This to standard out\n")); 66 PR_ASSERT((PRInt32)strlen("This to standard out\n") == rv);
|
/vbox/src/VBox/Devices/PC/ipxe/src/tests/ |
H A D | digest_test.c | 45 uint8_t out[digest->digestsize]; local 65 digest_final ( digest, ctx, out ); 68 return ( memcmp ( expected, out, sizeof ( out ) ) == 0 );
|
/vbox/src/VBox/Devices/Audio/ |
H A D | mixeng_template.h | 123 PPDMHOSTSTEREOSAMPLE out = dst; local 125 st_sample_t *out = dst; 138 out->u64LSample = VOL (glue (conv_, ET) (*in++), vol->l); 139 out->u64RSample = VOL (glue (conv_, ET) (*in++), vol->r); 141 out->l = VOL (glue (conv_, ET) (*in++), vol->l); 142 out->r = VOL (glue (conv_, ET) (*in++), vol->r); 144 out += 1; 156 PPDMHOSTSTEREOSAMPLE out = dst; local 158 st_sample_t *out = dst; 171 out 187 IN_T *out = (IN_T *) dst; local 199 IN_T *out = (IN_T *) dst; local [all...] |
H A D | rate_template.h | 36 st_sample_t ilast, icur, out; local 89 out.l = (ilast.l * (1.0 - t)) + icur.l * t; 90 out.r = (ilast.r * (1.0 - t)) + icur.r * t; 93 out.l = (ilast.l * ((int64_t) UINT_MAX - t) + icur.l * t) >> 32; 94 out.r = (ilast.r * ((int64_t) UINT_MAX - t) + icur.r * t) >> 32; 98 OP (obuf->l, out.l); 99 OP (obuf->r, out.r);
|
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/math/ |
H A D | m_dotprod_tmp.h | 33 static void TAG(dotprod_vec2)( GLfloat *out, argument 46 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) { 47 *out = (coord[0] * plane0 + 53 static void TAG(dotprod_vec3)( GLfloat *out, argument 67 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) { 68 *out = (coord[0] * plane0 + 75 static void TAG(dotprod_vec4)( GLfloat *out, argument 88 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) { 89 *out = (coord[0] * plane0 +
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/ |
H A D | stateblock.c | 42 static HRESULT WINAPI d3d9_stateblock_QueryInterface(IDirect3DStateBlock9 *iface, REFIID riid, void **out) argument 44 TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out); 50 *out = iface; 56 *out = NULL;
|
H A D | query.c | 42 static HRESULT WINAPI d3d9_query_QueryInterface(IDirect3DQuery9 *iface, REFIID riid, void **out) argument 44 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), out); 50 *out = iface; 56 *out = NULL;
|
H A D | shader.c | 39 static HRESULT WINAPI d3d9_vertexshader_QueryInterface(IDirect3DVertexShader9 *iface, REFIID riid, void **out) argument 41 TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out); 47 *out = iface; 53 *out = NULL; 183 static HRESULT WINAPI d3d9_pixelshader_QueryInterface(IDirect3DPixelShader9 *iface, REFIID riid, void **out) argument 185 TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out); 191 *out = iface; 197 *out [all...] |
/vbox/src/libs/zlib-1.2.6/examples/ |
H A D | zpipe.c | 42 unsigned char out[CHUNK]; local 66 strm.next_out = out; 70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) { 98 unsigned char out[CHUNK]; local 124 strm.next_out = out; 136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) { 168 fputs("out of memory\n", stderr);
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/ |
H A D | virtio-ring.c | 88 unsigned int out, unsigned int in, 94 BUG_ON(out + in == 0); 98 for (i = head; out; i = vr->desc[i].next, out--) { 86 vring_add_buf(struct vring_virtqueue *vq, struct vring_list list[], unsigned int out, unsigned int in, void *opaque, int num_added) argument
|
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | rdpsnd_libao.c | 152 STREAM out; local 172 out = &packet->s; 176 len = (WAVEOUTLEN > (out->end - out->p)) ? (out->end - out->p) : WAVEOUTLEN; 177 ao_play(o_device, (char *) out->p, len); 178 out->p += len; 187 if ((out->p == out [all...] |
H A D | parallel.c | 170 parallel_device_control(RD_NTHANDLE handle, uint32 request, STREAM in, STREAM out) argument
|
/vbox/src/libs/libxml2-2.6.31/doc/examples/ |
H A D | testWriter.c | 1146 xmlChar *out; local 1166 out = (unsigned char *) xmlMalloc((size_t) out_size); 1168 if (out != 0) { 1170 ret = handler->input(out, &out_size, (const xmlChar *) in, &temp); 1180 xmlFree(out); 1181 out = 0; 1183 out = (unsigned char *) xmlRealloc(out, out_size + 1); 1184 out[out_size] = 0; /*null terminating out */ [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/tools/ |
H A D | tail.c | 51 static PRFileDesc *out = NULL, *err = NULL; variable 76 out = PR_GetSpecialFD(PR_StandardOutput); 111 (void)PR_fprintf(out, "Input file not specified\n"); 145 PR_Write(out, buffer, read);
|
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpt/tests/ |
H A D | SimpleTypeLib.c | 82 FILE *out; local 168 out = fopen(argv[1], "wb"); 169 if (!out) { 175 fwrite(head, len, 1, out); 178 fwrite(data, len, 1, out); 180 if (ferror(out) != 0 || fclose(out) != 0) {
|
/vbox/src/libs/zlib-1.2.6/contrib/masmx64/ |
H A D | inffas8664.c | 44 Decode literal, length, and distance codes and write out the resulting 61 LEN -- ran out of enough output space or enough available input 88 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */ member in struct:inffast_ar 90 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */ 129 ar.out = strm->next_out; 130 ar.beg = ar.out - (start - strm->avail_out); 131 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT); 174 strm->next_out = ar.out; 178 strm->avail_out = (unsigned)(ar.out < ar.end ? 179 PAD_AVAIL_OUT + (ar.end - ar.out) [all...] |
/vbox/src/libs/zlib-1.2.6/ |
H A D | inffast.c | 33 Decode literal, length, and distance codes and write out the resulting 50 LEN -- ran out of enough output space or enough available input 74 unsigned char FAR *out; /* local strm->next_out */ local 76 unsigned char FAR *end; /* while out < end, enough space available */ 101 out = strm->next_out - OFF; 102 beg = out - (start - strm->avail_out); 103 end = out + (strm->avail_out - 257); 137 PUP(out) = (unsigned char)(here.val); 186 op = (unsigned)(out - beg); /* max distance in output */ 199 PUP(out) [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | ns_addr.c | 73 * First, figure out what he intends as a field separtor. 111 u_char *out, 126 cvtbase(1000L, 256, hb, i, out, len); 134 cvtbase(256L, 256, hb, i, out, len); 142 cvtbase(256L, 256, hb, i, out, len); 153 cvtbase(65536L, 256, hb, i, out, len); 210 cvtbase((long)ibase, 256, hb, i, out, len); 109 Field( char *buf, u_char *out, int len ) argument
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86/include/bits/ |
H A D | bigint.h | 295 * @v out Output buffer 300 void *out, size_t len ) { 310 : "r" ( value0 ), "0" ( out ), "1" ( len ) 299 bigint_done_raw( const uint32_t *value0, unsigned int size __unused, void *out, size_t len ) argument
|
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/ |
H A D | sha1extra.c | 50 u8 out[SHA1_DIGEST_SIZE]; /* HMAC-SHA1 result */ local 69 hmac_final ( &sha1_algorithm, sha1_ctx, keym, &key_len, out ); 71 if ( prf_len <= sizeof ( out ) ) { 72 memcpy ( prf, out, prf_len ); 76 memcpy ( prf, out, sizeof ( out ) ); 77 prf_len -= sizeof ( out ); 78 prf += sizeof ( out );
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/ |
H A D | swapchain.c | 40 static HRESULT WINAPI d3d8_swapchain_QueryInterface(IDirect3DSwapChain8 *iface, REFIID riid, void **out) argument 42 TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out); 48 *out = iface; 54 *out = NULL;
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | testC14N.c | 185 xmlChar **out = NULL; local 208 out = buffer; 211 if (out - buffer > buffer_size - 10) { 212 int indx = out - buffer; 215 out = &buffer[indx]; 217 (*out++) = str; 221 (*out) = NULL;
|
H A D | xmlcatalog.c | 485 FILE *out; local 490 out = fopen(argv[i + 1], "w"); 491 if (out == NULL) { 497 xmlACatalogDump(catal, out); 498 fclose(out); 505 out = fopen(XML_SGML_DEFAULT_CATALOG, "w"); 506 if (out == NULL) { 514 xmlACatalogDump(super, out); 515 fclose(out); 590 FILE *out; local [all...] |
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/test/ |
H A D | stub_test.cpp | 86 int out = 0; local 89 case 1: out = a->callme1(p1, p2); break; 90 case 2: out = a->callme2(p1, p2); break; 91 case 3: out = a->callme3(p1, p2); break; 94 return out;
|