Searched defs:left (Results 1 - 25 of 122) sorted by relevance

12345

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
H A Drexpr.h18 NodePtr left, member in struct:__anon10264
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DASTBase.h101 void double_link(ASTBase *left, ASTBase *up);
108 ASTBase *left() { return _left; } function in class:ASTDoublyLinkedBase
113 PCCTS_AST *left() { return _left; } function in class:ASTDoublyLinkedBase
H A Dast.c301 u->left = NULL;
306 if ( u->right!=NULL ) u->right->left = u;
328 * Set the 'up', and 'left' pointers of all nodes in 't'.
333 zzdouble_link(AST *t, AST *left, AST *up) argument
335 zzdouble_link(t, left, up)
336 AST *t, *left, *up;
340 t->left = left;
H A Dast.h50 struct _ast *left, *up; member in struct:_ast
58 #define AST_REQUIRED_FIELDS struct _ast *right, *down, *left, *up;
H A DASTBase.cpp215 * Set the 'up', and 'left' pointers of all nodes in 't'.
219 ASTDoublyLinkedBase::double_link(ASTBase *left, ASTBase *up) argument
223 t->_left = (ASTDoublyLinkedBase *) left;
/vbox/src/VBox/Frontends/Common/VBoxKeyboard/
H A Dkeyboard-types.h62 unsigned left; member in struct:__anon16030
/vbox/src/libs/zlib-1.2.6/contrib/infback9/
H A Dinftree9.c46 int left; /* number of prefix codes available */ local
125 left = 1;
127 left <<= 1;
128 left -= count[len];
129 if (left < 0) return -1; /* over-subscribed */
131 if (left > 0 && (type == CODES || max != 1))
263 left = (int)(1 << curr);
265 left -= count[curr + drop];
266 if (left <= 0) break;
268 left <<
[all...]
/vbox/src/libs/zlib-1.2.6/
H A Dgzread.c73 left unchanged if there is no more input data available, will be set to COPY
478 unsigned left, n; local
504 left = (unsigned)len - 1;
505 if (left) do {
515 n = state->x.have > left ? left : state->x.have;
525 left -= n;
527 } while (left && eol == NULL);
H A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
270 left = (int)(1 << curr);
272 left -= count[curr + drop];
273 if (left <= 0) break;
275 left <<
[all...]
H A Dinfback.c131 left = strm->avail_out; \
142 strm->avail_out = left; \
212 if (left == 0) { \
214 left = state->wsize; \
215 state->whave = left; \
216 if (out(out_desc, put, left)) { \
260 unsigned have, left; /* available input and output */ local
287 left = state->wsize;
346 if (copy > left) copy = left;
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/core/ipv4/
H A Dip_frag.c316 u16_t left, cop; local
341 left = p->tot_len - IP_HLEN;
343 while (left) {
344 last = (left <= mtu - IP_HLEN);
355 cop = last ? left : nfb * 8;
365 pbuf_realloc(rambuf, left + IP_HLEN);
383 left -= cop;
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dtcp_out.c122 u32_t left, seqno; local
138 left = len;
167 while (queue == NULL || left > 0) {
171 seglen = left > pcb->mss? pcb->mss: left;
290 left -= seglen;
/vbox/src/libs/zlib-1.2.6/examples/
H A Denough.c117 left: number of available bit patterns at length len
123 left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6)
126 syms == 2 is not saved since that immediately leads to a single code. left
129 left ends at syms-1 since left == syms immediately results in a single code.
130 (left > sym is not allowed since that would result in an incomplete code.)
148 to the num[] array as described above for the (syms, left, len) triplet.
196 len through max inclusive, coding syms symbols, with left bit patterns of
200 local big_t count(int syms, int len, int left) argument
210 if (syms == left)
255 beenhere(int syms, int len, int left, int mem, int rem) argument
319 examine(int syms, int len, int left, int mem, int rem) argument
403 int left; /* number of unused bit patterns at this length */ local
[all...]
H A Dgzjoin.c80 unsigned left; /* bytes remaining at next */ member in struct:__anon17371
112 in->left = 0;
126 if (in->left != 0)
130 len = (long)read(in->fd, in->buf + in->left, CHUNK - in->left);
133 in->left += (unsigned)len;
134 } while (len != 0 && in->left < CHUNK);
139 #define bget(in) (in->left ? 0 : bload(in), \
140 in->left ? (in->left
175 unsigned left; local
[all...]
H A Dzran.c10 in the uncompressed output. The compressed file is left open, and can then
88 off_t in, off_t out, unsigned left, unsigned char *window)
121 if (left)
122 memcpy(next->window, window + WINSIZE - left, left);
123 if (left < WINSIZE)
124 memcpy(next->window + left, window, WINSIZE - left);
87 addpoint(struct access *index, int bits, off_t in, off_t out, unsigned left, unsigned char *window) argument
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/
H A Drbtree.h45 struct wine_rb_entry *left; member in struct:wine_rb_entry
118 e->right = right->left;
119 right->left = e;
129 struct wine_rb_entry *left = e->left; local
131 e->left = left->right;
132 left->right = e;
133 left->flags &= ~WINE_RB_FLAG_RED;
134 left
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dapi_lib.c153 u16_t i, left; local
155 left = 0;
163 for(p = buf->p; left < len && p != NULL; p = p->next) {
168 ((u8_t *)dataptr)[left] = ((u8_t *)p->payload)[i];
169 if (++left >= len) {
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/
H A Dip_frag.c689 u16_t left, cop; local
727 left = p->tot_len - IP_HLEN;
731 while (left) {
732 last = (left <= mtu - IP_HLEN);
741 cop = last ? left : nfb * 8;
829 pbuf_realloc(rambuf, left + IP_HLEN);
865 left -= cop;
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dip6_frag.c544 u16_t left, cop; local
559 left = p->tot_len - IP6_HLEN;
563 while (left) {
564 last = (left <= nfb);
567 cop = last ? left : nfb;
651 left -= cop;
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/axtls/
H A Dcrypto.h137 int left; /* amount of data in buffer */ member in struct:__anon15087
/vbox/src/VBox/Main/src-client/
H A DAudioSnifferInterface.cpp111 DECLCALLBACK(void) iface_AudioVolumeOut (PPDMIAUDIOSNIFFERCONNECTOR pInterface, uint16_t left, uint16_t right) argument
118 pDrv->pAudioSniffer->getParent()->i_consoleVRDPServer()->SendAudioVolume(left, right);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Drbtree.h39 struct wine_rb_entry *left; member in struct:wine_rb_entry
112 e->right = right->left;
113 right->left = e;
123 struct wine_rb_entry *left = e->left; local
125 e->left = left->right;
126 left->right = e;
127 left->flags &= ~WINE_RB_FLAG_RED;
128 left
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/
H A Drbtree.h45 struct wine_rb_entry *left; member in struct:wine_rb_entry
118 e->right = right->left;
119 right->left = e;
129 struct wine_rb_entry *left = e->left; local
131 e->left = left->right;
132 left->right = e;
133 left->flags &= ~WINE_RB_FLAG_RED;
134 left
[all...]
/vbox/src/VBox/RDP/client-1.8.3/
H A Drdpsnd_dsp.c53 rdpsnd_dsp_softvol_set(uint16 left, uint16 right) argument
55 softvol_left = left;
57 DEBUG(("rdpsnd_dsp_softvol_set: left: %u, right: %u\n", left, right));
117 DEBUG(("using softvol with factors left: %d, right: %d (%d/%d)\n", factor_left,
H A Drdpsnd_oss.c382 oss_volume(uint16 left, uint16 right) argument
386 volume = left / (65536 / 100);
393 rdpsnd_dsp_softvol_set(left, right);

Completed in 289 milliseconds

12345