/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/struct/ |
H A D | err.D_DECL_INCOMPLETE.circular.d | 54 struct record rec; 59 rec.position = 0; 60 rec.content = 'a'; 61 printf("rec.position: %d\nrec.content: %c\n", 62 rec.position, rec.content);
|
H A D | err.D_DECL_INCOMPLETE.simple.d | 48 struct record rec; 52 rec.position = 0; 53 rec.content = 'a'; 54 printf("rec.position: %d\nrec.content: %c\n", 55 rec.position, rec.content);
|
H A D | err.D_DECL_COMBO.StructWithoutColon.d | 57 struct record rec; 62 rec.content = 'a'; 63 rec.position = 1; 69 "rec.content: %c\nrec.position: %d\npir.content: %c\npir.position: %d", 70 rec.content, rec.position, pir.content, pir.position);
|
H A D | err.D_DECL_COMBO.StructWithoutColon1.d | 51 struct record rec; 56 rec.content = 'a'; 57 rec.position = 1; 63 "rec.content: %c\nrec.position: %d\npir.content: %c\npir.position: %d", 64 rec.content, rec.position, pir.content, pir.position);
|
H A D | err.D_DECL_INCOMPLETE.order.d | 52 struct record rec; 57 rec.content = 'y'; 58 rec.position = 2; 64 "rec.content: %c\nrec.position: %d\npir.content: %c\npir.position: %d", 65 rec.content, rec.position, pir.content, pir.position);
|
H A D | err.D_DECL_INCOMPLETE.recursive.d | 39 struct record rec;
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/union/ |
H A D | err.D_DECL_INCOMPLETE.circular.d | 53 union record rec; 58 rec.position = 0; 59 rec.content = 'a'; 61 "rec.position: %d\nrec.content: %c\n", rec.position, rec.content);
|
H A D | err.D_DECL_INCOMPLETE.simple.d | 47 union record rec; 51 rec.position = 0; 52 rec.content = 'a'; 53 printf("rec.position: %d\nrec.content: %c\n", 54 rec.position, rec.content);
|
H A D | err.D_DECL_COMBO.UnionWithoutColon.d | 52 union record rec; 57 rec.content = 'a'; 58 rec.position = 1; 64 "rec.content: %c\nrec.position: %d\npir.content: %c\npir.position: %d", 65 rec.content, rec.position, pir.content, pir.position);
|
H A D | err.D_DECL_COMBO.UnionWithoutColon1.d | 51 union record rec; 56 rec.content = 'a'; 57 rec.position = 1; 63 "rec.content: %c\nrec.position: %d\npir.content: %c\npir.position: %d", 64 rec.content, rec.position, pir.content, pir.position);
|
H A D | err.D_DECL_INCOMPLETE.order.d | 52 union record rec; 57 rec.content = 'y'; 58 rec.position = 2; 64 "rec.content: %c\nrec.position: %d\npir.content: %c\npir.position: %d", 65 rec.content, rec.position, pir.content, pir.position);
|
H A D | err.D_DECL_INCOMPLETE.recursive.d | 39 union record rec;
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/sym/ |
H A D | sym.c | 29 * zzs_add(key,rec)-- Add 'rec' with key 'key' to the symbol table. 164 void zzs_add(char *key,Sym rec) argument 166 void zzs_add(key, rec) 168 register Sym *rec; 175 rec->hash = h; /* save hash code for fast comp later */ 178 if ( CurScope != NULL ) {rec->scope = *CurScope; *CurScope = rec;} 179 rec->next = table[h]; /* Add to doubly-linked list */ 180 rec [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/java_api/src/ |
H A D | TestMultiAggPrinta.java | 44 printaRecordString(PrintaRecord rec) argument 49 buf.append(rec.getAggregations()); 51 buf.append(rec.getFormattedStrings()); 53 buf.append(rec.getTuples()); 55 buf.append(rec.getOutput());
|
H A D | TestGetAggregate.java | 91 AggregationRecord rec; 114 rec = a.getRecord(Tuple.EMPTY); 115 value = rec.getValue().getValue().longValue(); 122 rec = a.getRecord(Tuple.EMPTY); 123 value = rec.getValue().getValue().longValue();
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
H A D | hash.c | 100 /* Given a table, add 'rec' with key 'key' (add to front of list). return ptr to entry */ 103 hash_add( Entry **table, char *key, Entry *rec ) 105 hash_add( table, key, rec ) 108 Entry *rec; 113 require(table!=NULL && key!=NULL && rec!=NULL, "add: invalid addition"); 116 rec->next = table[h]; /* Add to singly-linked list */ 117 table[h] = rec; 118 return rec;
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/ |
H A D | dt_consume.c | 1232 dt_normalize(dtrace_hdl_t *dtp, caddr_t base, dtrace_recdesc_t *rec) argument 1241 addr = base + rec->dtrd_offset; 1243 if (rec->dtrd_size != sizeof (dtrace_aggvarid_t)) 1248 rec++; 1250 if (rec->dtrd_action != DTRACEACT_LIBACT) 1253 if (rec->dtrd_arg != DT_ACT_NORMALIZE) 1256 addr = base + rec->dtrd_offset; 1258 switch (rec->dtrd_size) { 1339 dt_trunc(dtrace_hdl_t *dtp, caddr_t base, dtrace_recdesc_t *rec) argument 1351 addr = base + rec 1404 dt_print_datum(dtrace_hdl_t *dtp, FILE *fp, dtrace_recdesc_t *rec, caddr_t addr, size_t size, uint64_t normal) argument 1485 dtrace_recdesc_t *rec; local 1692 dtrace_recdesc_t *rec = &epd->dtepd_rec[i]; local 2052 dt_consume_begin_record(const dtrace_probedata_t *data, const dtrace_recdesc_t *rec, void *arg) argument [all...] |
H A D | dt_map.c | 130 dtrace_recdesc_t *rec = &enabled->dtepd_rec[i]; local 132 if (!DTRACEACT_ISPRINTFLIKE(rec->dtrd_action)) 135 if (rec->dtrd_format == 0) 138 if (rec->dtrd_format <= dtp->dt_maxformat && 139 dtp->dt_formats[rec->dtrd_format - 1] != NULL) 143 fmt.dtfd_format = rec->dtrd_format; 163 while (rec->dtrd_format > (maxformat = dtp->dt_maxformat)) { 183 dtp->dt_formats[rec->dtrd_format - 1] = 184 rec->dtrd_action == DTRACEACT_PRINTA ? 190 if (dtp->dt_formats[rec [all...] |
H A D | dt_aggregate.c | 350 dtrace_recdesc_t *rec = agg->dtagd_rec; local 361 rec->dtrd_offset)); 375 dtrace_recdesc_t *rec; local 444 rec = &agg->dtagd_rec[j]; 445 roffs = rec->dtrd_offset; 447 switch (rec->dtrd_action) { 474 for (i = 0; i < rec->dtrd_size; i++) 491 rec = &agg->dtagd_rec[j]; 492 roffs = rec->dtrd_offset; 494 for (i = 0; i < rec 1085 dtrace_recdesc_t *rec; local 1577 dtrace_recdesc_t *rec; local 1856 dtrace_recdesc_t *rec; local [all...] |
H A D | dt_printf.c | 414 const dtrace_recdesc_t *rec = pfd->pfd_rec; local 438 switch (rec->dtrd_action) { 441 err = dt_print_ustack(dtp, fp, format, addr, rec->dtrd_arg); 445 err = dt_print_stack(dtp, fp, format, addr, rec->dtrd_arg, 446 rec->dtrd_size / rec->dtrd_arg); 1395 const dtrace_recdesc_t *rec; local 1480 rec = &agg->dtagd_rec[aggrec]; 1481 addr = aggdata->dtada_data + rec->dtrd_offset; 1502 rec 1943 const dtrace_recdesc_t *rec = &agg->dtagd_rec[1]; local [all...] |
/vbox/src/VBox/GuestHost/OpenGL/glapi_parser/ |
H A D | apiutil.py | 224 rec = d[func] 225 if not "omit" in rec.chromium: 235 rec = d[func] 236 if (not "omit" in rec.chromium or 237 rec.alias != ''): 247 rec = d[func] 248 if (not "omit" in rec.chromium and 249 not "stub" in rec.chromium and 250 rec.alias == ''):
|
/vbox/src/VBox/VMM/VMMR3/ |
H A D | PATMSSM.cpp | 552 RELOCREC rec = *(PRELOCREC)pNode; local 553 RTRCPTR *pFixup = (RTRCPTR *)rec.pRelocPos; 557 Assert(rec.pRelocPos); 558 uintptr_t offRelocPos = (uintptr_t)rec.pRelocPos - (uintptr_t)pVM->patm.s.pPatchMemHC; 561 rec.pRelocPos = (uint8_t *)offRelocPos; 563 /* Zero rec.Core.Key since it's unused and may trigger SSM check due to the hack below. */ 564 rec.Core.Key = 0; 568 int rc = SSMR3PutStructEx(pSSM, &rec, sizeof(rec), 0 /*fFlags*/, &g_aPatmRelocRec[0], NULL); 955 RELOCREC rec; local 1005 RECPATCHTOGUEST rec; local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | prism2.c | 449 hfa384x_rec_t rec; local 458 result = hfa384x_copy_from_bap( hw, rid, 0, &rec, sizeof(rec)); 463 if ( ((hfa384x2host_16(rec.reclen)-1)*2) != len ) { /* note body len calculation in bytes */ 464 printf ( "RID len mismatch, rid=%#hx hlen=%d fwlen=%d\n", rid, len, (hfa384x2host_16(rec.reclen)-1)*2); 468 result = hfa384x_copy_from_bap( hw, rid, sizeof(rec), buf, len); 522 hfa384x_rec_t rec; local 524 rec.rid = host2hfa384x_16(rid); 525 rec.reclen = host2hfa384x_16((len/2) + 1); /* note conversion to words, +1 for rid field */ 527 result = hfa384x_copy_to_bap( hw, rid, 0, &rec, sizeo [all...] |
/vbox/src/libs/zlib-1.2.6/examples/ |
H A D | gzlog.c | 721 FILE *rec; local 725 rec = fopen(log->path, "a"); 726 if (rec == NULL) 728 fprintf(rec, "%.24s %s recovery: %s\n", ctime(&now), op == APPEND_OP ? 730 fclose(rec);
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/ |
H A D | dtrace.c | 934 const dtrace_recdesc_t *rec = bufdata->dtbda_recdesc; local 997 if (rec != NULL) { 999 BUFDUMP(rec, dtrd_action); 1000 BUFDUMP(rec, dtrd_size); 1004 int lim = rec->dtrd_size; 1006 (void) sprintf(buf, "%d (data: ", rec->dtrd_offset); 1012 data = (uint8_t *)agg->dtada_data + rec->dtrd_offset; 1021 "%s)", lim < rec->dtrd_size ? " ..." : ""); 1022 BUFDUMPASSTR(rec, dtrd_offset, buf); 1024 BUFDUMP(rec, dtrd_offse 1046 chewrec(const dtrace_probedata_t *data, const dtrace_recdesc_t *rec, void *arg) argument [all...] |