Searched defs:pb (Results 1 - 25 of 84) sorted by relevance

1234

/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/
H A Dxptcinvoke_asm_ppc_rhapsody.s130 bcl 20,31,L1$pb
131 L1$pb:
133 addis r11,r11,ha16(L1$lz-L1$pb)
135 lwz r12,lo16(L1$lz-L1$pb)(r11)
137 addi r11,r11,lo16(L1$lz-L1$pb)
149 bcl 20,31,L2$pb
150 L2$pb:
152 addis r11,r11,ha16(L2$lz-L2$pb)
154 lwz r12,lo16(L2$lz-L2$pb)(r11)
156 addi r11,r11,lo16(L2$lz-L2$pb)
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/
H A DVBoxPrintHexDump.c60 uint8_t const *pb = (uint8_t const *)pv; local
66 cchPrinted += VBoxPrintHex((uintptr_t)pb, sizeof(pb));
74 cchPrinted += VBoxPrintHex(pb[i], 1);
82 cchPrinted += vboxPrintHexDumpChar(pb[i] == ' '
84 : RT_C_IS_GRAPH(pb[i])
85 ? pb[i]
97 pb += 16;
/vbox/src/VBox/Runtime/r3/posix/
H A Drand-posix.cpp54 static DECLCALLBACK(void) rtRandAdvPosixGetBytes(PRTRANDINT pThis, uint8_t *pb, size_t cb) argument
56 ssize_t cbRead = read(pThis->u.File.hFile, pb, cb);
68 pb += cbRead;
70 cbRead = read(pThis->u.File.hFile, pb, cb);
/vbox/src/VBox/ValidationKit/snippets/
H A Dalloc-1.c67 char *pb = malloc(cbThis); local
68 if (!pb)
79 *pb = (char)cbThis;
80 pb += 0x1000;
/vbox/src/VBox/Runtime/common/checksum/
H A Dcrc32-zlib.cpp43 const Bytef *pb = (const Bytef *)pv; local
47 uCRC32 = crc32(uCRC32, pb, cbChunk);
48 pb += cbChunk;
/vbox/src/VBox/Runtime/common/string/
H A DRTStrPrintHexBytes.cpp51 uint8_t const *pb = (uint8_t const *)pv; local
54 uint8_t b = *pb++;
H A DRTUtf16PrintHexBytes.cpp51 uint8_t const *pb = (uint8_t const *)pv; local
54 uint8_t b = *pb++;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaEnc.h19 int pb; /* 0 <= pb <= 4, default = 2 */ member in struct:_CLzmaEncProps
H A DLzmaDec.h26 unsigned lc, lp, pb; member in struct:_CLzmaProps
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_polygon.c17 CRPolygonBits *pb = &(sb->polygon); local
26 RESET(pb->enable, ctx->bitid);
30 RESET(pb->offset, ctx->bitid);
36 RESET(pb->mode, ctx->bitid);
40 RESET(pb->stipple, ctx->bitid);
42 RESET(pb->dirty, ctx->bitid);
50 CRPolygonBits *pb = &(sb->polygon); local
69 DIRTY(pb->mode, g->neg_bitid);
70 DIRTY(pb->dirty, g->neg_bitid);
78 CRPolygonBits *pb local
106 CRPolygonBits *pb = &(sb->polygon); local
147 CRPolygonBits *pb = &(sb->polygon); local
170 CRPolygonBits *pb = &(sb->polygon); local
[all...]
H A Dstate_point.c15 CRPointBits *pb = &(sb->point); local
19 RESET(pb->enableSmooth, ctx->bitid);
21 RESET(pb->size, ctx->bitid);
24 RESET(pb->minSize, ctx->bitid);
26 RESET(pb->maxSize, ctx->bitid);
28 RESET(pb->fadeThresholdSize, ctx->bitid);
32 RESET(pb->distanceAttenuation, ctx->bitid);
36 RESET(pb->enableSprite, ctx->bitid);
39 RESET(pb->coordReplacement[i], ctx->bitid);
44 RESET(pb
63 CRPointBits *pb = &(sb->point); local
104 CRPointBits *pb = &(sb->point); local
[all...]
H A Dstate_pixel.c17 CRPixelBits *pb = &(sb->pixel); local
31 RESET(pb->transfer, ctx->bitid);
32 RESET(pb->zoom, ctx->bitid);
55 RESET(pb->maps, ctx->bitid);
57 RESET(pb->dirty, ctx->bitid);
70 CRPixelBits *pb = &(sb->pixel); local
128 DIRTY(pb->transfer, g->neg_bitid);
129 DIRTY(pb->dirty, g->neg_bitid);
137 CRPixelBits *pb = &(sb->pixel); local
149 DIRTY(pb
208 CRPixelBits *pb = &(sb->pixel); local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DQsort.c127 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
155 pa = pb = (char *)a + es;
159 while (pb <= pc && (cmp_result = cmp(pb, a)) <= 0) {
162 swap(pa, pb);
165 pb += es;
167 while (pb <= pc && (cmp_result = cmp(pc, a)) >= 0) {
175 if (pb > pc)
177 swap(pb, pc);
179 pb
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsQuickSort.cpp106 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
131 pa = pb = (char *)a + es;
135 while (pb <= pc && (r = cmp(pb, a, data)) <= 0) {
138 swap(pa, pb);
141 pb += es;
143 while (pb <= pc && (r = cmp(pc, a, data)) >= 0) {
151 if (pb > pc)
153 swap(pb, pc);
155 pb
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzmaDec.h26 unsigned lc, lp, pb; member in struct:_CLzmaProps
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dinet_chksum.c138 u8_t *pb = (u8_t *)dataptr; local
141 int odd = ((mem_ptr_t)pb & 1);
145 ((u8_t *)&t)[1] = *pb++;
150 ps = (u16_t *)(void *)pb;
194 u8_t *pb = (u8_t *)dataptr; local
199 int odd = ((mem_ptr_t)pb & 1);
202 ((u8_t *)&t)[1] = *pb++;
206 ps = (u16_t *)pb;
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dvj.c138 vj_compress_tcp(struct vjcompress *comp, struct pbuf *pb) argument
140 register struct ip_hdr *ip = (struct ip_hdr *)pb->payload;
163 if ((IPH_OFFSET(ip) & PP_HTONS(0x3fff)) || pb->tot_len < 40) {
219 if (hlen > pb->len) {
242 if (hlen > pb->len) {
378 if(pbuf_header(pb, -hlen)){
382 cp = (u_char *)pb->payload;
387 if(pbuf_header(pb, -hlen)) {
391 cp = (u_char *)pb->payload;
/vbox/src/VBox/Runtime/testcase/
H A DtstNoCrt-1.cpp59 uint8_t *pb = (uint8_t *)pv; local
61 *pb++ = ch;
66 uint8_t *pb = (uint8_t *)pv; local
69 if (*pb != (uint8_t)ch)
73 for (off = 1; off < cb && pb[off] != (uint8_t)ch; off++)
76 pb += off;
80 pszDesc, (uintptr_t)pb - (uintptr_t)pv,
81 (uint8_t *)pb - (uint8_t *)pv + off, *pb, (uint8_t)ch);
84 pszDesc, (uint8_t *)pb
[all...]
H A DtstRTBigNum.cpp184 static void testInitOneLittleEndian(uint8_t const *pb, size_t cb, PRTBIGNUM pBigNum) argument
191 uint8_t const *pbSrc = pb;
/vbox/src/libs/xpcom18a4/python/src/
H A DPyIID.cpp63 PyBufferProcs *pb = NULL; local
64 pb = obBuf->ob_type->tp_as_buffer;
66 int size = (*pb->bf_getreadbuffer)(obBuf, 0, &buf);
/vbox/src/bldprogs/
H A Dbiossums.c78 static uint8_t calculateChecksum(uint8_t *pb, size_t cb, size_t iChecksum) argument
85 u8Sum += pb[i];
93 * @param pb Where to search for the signature
98 static int searchHeader(uint8_t *pb, size_t cb, const char *pszHeader, uint8_t **pbHeader) argument
105 if (!memcmp(pb + i, pszHeader, cbSignature))
109 *pbHeader = pb + i;
/vbox/src/VBox/VMM/VMMR3/
H A DDBGFStack.cpp129 uint8_t *pb; member in union:__anon16849
135 uRet.pb = u.pb + cbStackItem;
136 uArgs.pb = u.pb + cbStackItem + cbRetAddr;
/vbox/src/VBox/Runtime/common/alloc/
H A Dmemcache.cpp312 uint8_t *pb = (uint8_t *)(pPage + 1); local
313 pb = RT_ALIGN_PT(pb, 8, uint8_t *);
314 pPage->pbmCtor = pb;
315 pb = (uint8_t *)pPage + PAGE_SIZE - pThis->cbObject * cObjects;
316 pPage->pbObjects = pb; Assert(RT_ALIGN_P(pb, pThis->cbAlignment) == pb);
317 pb -= pThis->cBits / 8;
318 pb
[all...]
/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-bitstring.cpp97 uint8_t const *pb = pThis->uBits.pu8; local
103 uint8_t b = *pb++;
H A Dasn1-ut-integer.cpp153 uint8_t *pb = (uint8_t *)pThis->Asn1Core.uData.pu8; local
156 pb[cb] = (uint8_t)uValue;
180 uint8_t const *pb = pThis->Asn1Core.uData.pu8; local
181 AssertReturn(pb, -1);
187 uint8_t b = *pb++;

Completed in 329 milliseconds

1234