OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Aux
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/sandbox/linux/seccomp-bpf/
bpf_tester_compatibility_delegate.h
18
// object of type "
Aux
" as a parameter. This is used to implement the BPF_TEST
20
template <class Policy, class
Aux
>
23
typedef void (*TestFunction)(
Aux
*);
46
Aux
aux_;
/external/llvm/lib/MC/
WinCOFFObjectWriter.cpp
52
COFF::Auxiliary
Aux
;
66
AuxiliarySymbols
Aux
;
364
coff_symbol->
Aux
.resize(1);
365
memset(&coff_symbol->
Aux
[0], 0, sizeof(coff_symbol->
Aux
[0]));
366
coff_symbol->
Aux
[0].AuxType = ATSectionDefinition;
367
coff_symbol->
Aux
[0].
Aux
.SectionDefinition.Selection = Sec.getSelection();
441
coff_symbol->
Aux
.resize(1);
442
memset(&coff_symbol->
Aux
[0], 0, sizeof(coff_symbol->Aux[0]))
[
all
...]
/external/llvm/tools/llvm-readobj/
COFFDumper.cpp
317
const T *&
Aux
) {
319
Aux
= reinterpret_cast<const T*>(AuxData.data());
753
const coff_aux_function_definition *
Aux
;
754
if (error(getSymbolAuxData(Obj, Symbol + I,
Aux
)))
758
W.printNumber("TagIndex",
Aux
->TagIndex);
759
W.printNumber("TotalSize",
Aux
->TotalSize);
760
W.printHex("PointerToLineNumber",
Aux
->PointerToLinenumber);
761
W.printHex("PointerToNextFunction",
Aux
->PointerToNextFunction);
762
W.printBinary("Unused", makeArrayRef(
Aux
->Unused));
765
const coff_aux_weak_external *
Aux
;
[
all
...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_wm_pass0.c
328
out->eot = inst->
Aux
& INST_AUX_EOT;
329
out->target = INST_AUX_GET_TARGET(inst->
Aux
);
brw_wm_fp.c
978
/* The inst->
Aux
field is used for FB write target and the EOT marker */
988
inst->
Aux
= INST_AUX_TARGET(i);
995
inst->
Aux
|= INST_AUX_EOT;
1000
inst->
Aux
= INST_AUX_TARGET(0) | INST_AUX_EOT;
/external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_pass0.c
328
out->eot = inst->
Aux
& INST_AUX_EOT;
329
out->target = INST_AUX_GET_TARGET(inst->
Aux
);
brw_wm_fp.c
978
/* The inst->
Aux
field is used for FB write target and the EOT marker */
988
inst->
Aux
= INST_AUX_TARGET(i);
995
inst->
Aux
|= INST_AUX_EOT;
1000
inst->
Aux
= INST_AUX_TARGET(0) | INST_AUX_EOT;
/external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_instruction.h
417
GLint
Aux
;
/external/mesa3d/src/mesa/program/
prog_instruction.h
417
GLint
Aux
;
/external/llvm/lib/Object/
COFFObjectFile.cpp
787
const uint8_t *
Aux
= nullptr;
790
//
AUX
data comes immediately after the symbol in COFF
791
Aux
= reinterpret_cast<const uint8_t *>(Symbol + 1);
793
// Verify that the
Aux
symbol points to a valid entry in the symbol table.
794
uintptr_t Offset = uintptr_t(
Aux
) - uintptr_t(base());
798
report_fatal_error("
Aux
Symbol data was outside of symbol table.");
801
== 0 && "
Aux
Symbol data did not point to the beginning of a symbol");
804
return ArrayRef<uint8_t>(
Aux
,
[
all
...]
Completed in 502 milliseconds