/vbox/src/VBox/GuestHost/OpenGL/packer/ |
H A D | pack_error.c | 17 void crPackErrorFunction( CRPackContext *pc, CRPackErrorHandlerFunc function ) argument 19 pc->Error = function; 29 CR_GET_PACKER_CONTEXT(pc); 31 if (pc->Error) 32 pc->Error( line, file, error, info );
|
H A D | pack_init.c | 25 CRPackContext *pc = crCalloc(sizeof(CRPackContext)); local 26 if (!pc) 28 crInitMutex(&pc->mutex); 30 GET_PACKER_CONTEXT(pc); 31 crMemZero( pc, sizeof(CRPackContext)); 33 pc->u32CmdBlockState = 0; 34 pc->swapping = swapping; 35 pc->Flush = NULL; 36 pc->SendHuge = NULL; 37 pc 41 crPackDeleteContext(CRPackContext *pc) argument [all...] |
H A D | pack_buffer.c | 50 void crPackSetBuffer( CRPackContext *pc, CRPackBuffer *buffer ) argument 52 CRASSERT( pc ); 55 if (pc->currentBuffer == buffer) 58 if (pc->currentBuffer) { 62 crPackReleaseBuffer(pc); 65 CRASSERT( pc->currentBuffer == NULL); /* release if NULL? */ 69 pc->currentBuffer = buffer; 70 buffer->context = pc; 73 pc->buffer = *buffer; /* struct copy */ 79 CRPackContext *pc, CRPackBuffe 78 crPackSetBufferDEBUG( const char *file, int line, CRPackContext *pc, CRPackBuffer *buffer) argument 125 crPackFlushFunc( CRPackContext *pc, CRPackFlushFunc ff ) argument 130 crPackFlushArg( CRPackContext *pc, void *flush_arg ) argument 135 crPackSendHugeFunc( CRPackContext *pc, CRPackSendHugeFunc shf ) argument 271 CRPackContext *pc = buf->context; local [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/include/ipv4/lwip/ |
H A D | ip_frag.h | 77 struct pbuf_custom pc; member in struct:pbuf_custom_ref
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/ipv6/lwip/ |
H A D | ip6_frag.h | 90 struct pbuf_custom pc; member in struct:pbuf_custom_ref
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/ |
H A D | Qsort.c | 127 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local 157 pc = pd = (char *)a + (n - 1) * es; 159 while (pb <= pc && (cmp_result = cmp(pb, a)) <= 0) { 167 while (pb <= pc && (cmp_result = cmp(pc, a)) >= 0) { 170 swap(pc, pd); 173 pc -= es; 175 if (pb > pc) 177 swap(pb, pc); 180 pc [all...] |
/vbox/src/VBox/Runtime/r0drv/os2/ |
H A D | thread-r0drv-os2.cpp | 168 int32_t volatile *pc = &g_acPreemptDisabled[ASMGetApicId()]; local 169 AssertMsg(pState->u32Reserved == (uint32_t)*pc, ("uchDummy=%d *pc=%d \n", pState->u32Reserved, *pc)); 170 ASMAtomicUoWriteS32(pc, pState->u32Reserved - 1);
|
/vbox/src/libs/xpcom18a4/xpcom/ds/ |
H A D | nsQuickSort.cpp | 106 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local 133 pc = pd = (char *)a + (n - 1) * es; 135 while (pb <= pc && (r = cmp(pb, a, data)) <= 0) { 143 while (pb <= pc && (r = cmp(pc, a, data)) >= 0) { 146 swap(pc, pd); 149 pc -= es; 151 if (pb > pc) 153 swap(pb, pc); 156 pc [all...] |
H A D | nsTimelineService.cpp | 336 char pbuf[550], *pc, tbuf[550]; local 342 pc = Indent(pbuf); 343 PR_vsnprintf(pc, sizeof pbuf - (pc - pbuf), text, args);
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | gdbstub.c | 241 gdbreg_t pc; local 242 if ( stub->len > 1 && gdbstub_get_packet_args ( stub, &pc, 1, NULL ) ) { 243 gdbmach_set_pc ( stub->regs, pc );
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/intel/dtrace/ |
H A D | dtrace_isa.c | 48 uintptr_t pc; local 64 pc = fp->fr_savpc; 97 pcstack[depth++] = (pc_t)pc; 112 dtrace_getustack_common(uint64_t *pcstack, int pcstack_limit, uintptr_t pc, argument 135 while (pc != 0) { 147 *pcstack++ = (uint64_t)pc; 164 pc = dtrace_fulword(&gregs[REG_PC]); 172 pc = dtrace_fuword32(&gregs[EIP]); 180 pc = dtrace_fulword(&fr->fr_savpc); 185 pc 216 uintptr_t pc, sp; local 272 uintptr_t pc, sp; local 304 uintptr_t pc, sp, oldcontext; local [all...] |
/vbox/src/VBox/Main/webservice/ |
H A D | vboxweb.h | 323 * @param pc COM object for which to create a reference 329 const ComPtr<T> &pc) 332 if (pc.isNull()) 345 ComPtr<IUnknown> pobjUnknown = pc; 350 pc, // void *pobjInterface 327 createOrFindRefFromComPtr(const WSDLT_ID &idParent, const char *pcszInterface, const ComPtr<T> &pc) argument
|
/vbox/src/libs/xpcom18a4/xpcom/base/ |
H A D | nsStackFrameUnix.cpp | 108 void *pc = *(bp+1); local 111 int ok = dladdr(pc, &info); 113 fprintf(aStream, "UNKNOWN %p\n", pc); 117 PRUint32 foff = (char*)pc - (char*)info.dli_fbase; 136 PRUint32 off = (char*)pc - (char*)info.dli_saddr; 155 static int load_address ( void * pc, void * arg, FILE * aStream ); 156 static int write_address_file ( void * pc ); 157 static struct bucket * newbucket ( void * pc ); 188 void * pc; member in struct:bucket 228 write_address_file(void * pc, FIL argument 284 load_address(void * pc, void * arg, FILE * aStream) argument 307 newbucket(void * pc) argument [all...] |
/vbox/src/recompiler/ |
H A D | cpu-defs.h | 158 target_ulong pc; member in struct:CPUBreakpoint 177 uintptr_t mem_io_pc; /* host pc at which the memory was \
|
H A D | exec-all.h | 61 #define DISAS_JUMP 1 /* only pc was modified dynamically */ 63 #define DISAS_TB_JUMP 3 /* only pc was modified statically */ 114 target_ulong pc, target_ulong cs_base, int flags, 118 int page_unprotect(target_ulong address, uintptr_t pc, void *puc); 155 target_ulong pc; /* simulated PC corresponding to this block (EIP + CS base) */ member in struct:TranslationBlock 192 static inline unsigned int tb_jmp_cache_hash_page(target_ulong pc) argument 195 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)); 199 static inline unsigned int tb_jmp_cache_hash_func(target_ulong pc) argument 202 tmp = pc 207 tb_phys_hash_func(tb_page_addr_t pc) argument [all...] |
H A D | cpu-exec.c | 121 tb = tb_gen_code(env, orig_tb->pc, orig_tb->cs_base, orig_tb->flags, 141 static TranslationBlock *tb_find_slow(target_ulong pc, argument 153 phys_pc = get_page_addr_code(env, pc); 162 if (tb->pc == pc && 168 virt_page2 = (pc & TARGET_PAGE_MASK) + 181 tb = tb_gen_code(env, pc, cs_base, flags, 0); 184 /* we add the TB in the virtual pc hash table */ 185 env->tb_jmp_cache[tb_jmp_cache_hash_func(pc)] = tb; 192 target_ulong cs_base, pc; local 947 handle_cpu_signal(uintptr_t pc, uintptr_t address, int is_write, sigset_t *old_set, void *puc) argument 1034 uintptr_t pc; local 1081 uintptr_t pc; local 1171 uintptr_t pc; local 1195 uint32_t *pc = uc->uc_mcontext.sc_pc; local 1230 uintptr_t pc = regs[1]; local 1234 uintptr_t pc = sc->sigc_regs.tpc; local 1238 uintptr_t pc = uc->sc_pc; local 1282 uintptr_t pc; local 1304 uintptr_t pc; local 1356 uintptr_t pc; local 1409 greg_t pc = uc->uc_mcontext.pc; local 1425 uintptr_t pc = uc->uc_mcontext.sc_iaoq[0]; local [all...] |
/vbox/src/VBox/VMM/VMMR3/ |
H A D | VMMGuruMeditation.cpp | 399 DBGFADDRESS pc; local 400 pc.fFlags = DBGFADDRESS_FLAGS_RING0 | DBGFADDRESS_FLAGS_VALID; 402 pc.FlatPtr = pc.off = pVCpu->vmm.s.CallRing3JmpBufR0.rip; 404 pc.FlatPtr = pc.off = pVCpu->vmm.s.CallRing3JmpBufR0.eip; 406 pc.Sel = DBGF_SEL_FLAT; 419 rc2 = DBGFR3StackWalkBeginEx(pVM->pUVM, pVCpu->idCpu, DBGFCODETYPE_RING0, &ebp, &esp, &pc,
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | pbuf.c | 663 struct pbuf_custom *pc = (struct pbuf_custom*)p; local 664 LWIP_ASSERT("pc->custom_free_function != NULL", pc->custom_free_function != NULL); 665 pc->custom_free_function(p);
|
/vbox/src/VBox/Devices/Network/slirp/libalias/ |
H A D | alias_dns.c | 305 const char *pc; local 317 pc = strchr(c, '.'); 318 *q = pc ? (pc - c) : strlen(c);
|
/vbox/src/VBox/GuestHost/OpenGL/include/ |
H A D | cr_pack.h | 123 extern DECLEXPORT(void) crPackDeleteContext(CRPackContext *pc); variable 124 extern DECLEXPORT(void) crPackSetContext( CRPackContext *pc ); variable 127 extern DECLEXPORT(void) crPackSetBuffer( CRPackContext *pc, CRPackBuffer *buffer ); 128 extern DECLEXPORT(void) crPackSetBufferDEBUG( const char *file, int line, CRPackContext *pc, CRPackBuffer *buffer ); 129 extern DECLEXPORT(void) crPackReleaseBuffer( CRPackContext *pc ); variable 130 extern DECLEXPORT(void) crPackResetPointers( CRPackContext *pc ); variable 140 extern DECLEXPORT(void) crPackFlushFunc( CRPackContext *pc, CRPackFlushFunc ff ); 141 extern DECLEXPORT(void) crPackFlushArg( CRPackContext *pc, void *flush_arg ); 142 extern DECLEXPORT(void) crPackSendHugeFunc( CRPackContext *pc, CRPackSendHugeFunc shf ); 143 extern DECLEXPORT(void) crPackErrorFunction( CRPackContext *pc, CRPackErrorHandlerFun 147 extern DECLEXPORT(void) crPackResetBoundingBox( CRPackContext *pc ); variable 222 crPackCanHoldOpcode(const CRPackContext *pc, int num_opcode, int num_data) argument [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath5k/ |
H A D | ath5k_eeprom.c | 507 struct ath5k_chan_pcal_info *pc, unsigned int mode) 524 pc[i++].freq = ath5k_eeprom_bin2freq(ee, 532 pc[i++].freq = ath5k_eeprom_bin2freq(ee, 506 ath5k_eeprom_read_freq_list(struct ath5k_hw *ah, int *offset, int max, struct ath5k_chan_pcal_info *pc, unsigned int mode) argument
|
/vbox/src/VBox/Additions/x11/vboxvideo/ |
H A D | pointer.c | 367 CARD32 *pc; local 405 pc = bitsp->argb; 425 if (pc[cx] >= 0xF0000000) 430 pc += w;
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/ |
H A D | ptthread.c | 112 void* pc; member in struct:stack_frame 131 ptrdiff_t pc = (ptrdiff_t)frame->pc; local 132 if ((pc < 0x08000000) || (pc > 0x7fffffff) || (frame->next < frame))
|
/vbox/src/libs/libpng-1.2.8/ |
H A D | pnggccrd.c | 3499 // pc = abs(pcv) 3505 "movl %%eax, _pctemp \n\t" // save pc for later use 3524 // pa > pb; now test if pb <= pc 3527 // pb > pc; Raw(x) = Paeth(x) + Prior(x-bpp) 3532 // pb <= pc; Raw(x) = Paeth(x) + Prior(x) 3537 // pa <= pb; now test if pa <= pc 3540 // pa > pc; Raw(x) = Paeth(x) + Prior(x-bpp) 3545 // pa <= pc; Raw(x) = Paeth(x) + Raw(x-bpp) 3620 // pc = abs(p-c) = abs(pcv) 3647 // test ((pa <= pb)? pa:pb) <= pc 5275 int a, b, c, pa, pb, pc, p; local [all...] |
H A D | pngvcrd.c | 2415 // pc = abs(pcv) 2420 mov pctemp, eax // save pc for later use 2437 // pa > pb; now test if pb <= pc 2440 // pb > pc; Raw(x) = Paeth(x) + Prior(x-bpp) 2444 // pb <= pc; Raw(x) = Paeth(x) + Prior(x) 2448 // pa <= pb; now test if pa <= pc 2451 // pa > pc; Raw(x) = Paeth(x) + Prior(x-bpp) 2455 // pa <= pc; Raw(x) = Paeth(x) + Raw(x-bpp) 2509 // pc = abs(p-c) = abs(pcv) 2536 // test ((pa <= pb)? pa:pb) <= pc 3859 int a, b, c, pa, pb, pc, p; local [all...] |