OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InitVal
(Results
1 - 25
of
39
) sorted by relevancy
1
2
/src/sys/external/bsd/acpica/dist/namespace/
nsaccess.c
77
const ACPI_PREDEFINED_NAMES *
InitVal
= NULL;
130
for (
InitVal
= AcpiGbl_PreDefinedNames;
InitVal
->Name;
InitVal
++)
136
if (!strcmp (
InitVal
->Name, "_OSI") && !AcpiGbl_CreateOsiMethod)
147
memcpy(&Name,
InitVal
->Name, sizeof(Name));
156
NewNode->Type =
InitVal
->Type;
174
if (
InitVal
->Val)
176
Status = AcpiOsPredefinedOverride (
InitVal
, &Val);
181
InitVal
->Name))
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/IR/
Globals.cpp
334
Constant *
InitVal
, const Twine &Name,
339
InitVal
!= nullptr, Link, Name, AddressSpace),
345
if (
InitVal
) {
346
assert(
InitVal
->getType() == Ty &&
348
Op<0>() =
InitVal
;
353
LinkageTypes Link, Constant *
InitVal
,
360
InitVal
!= nullptr, Link, Name,
369
if (
InitVal
) {
370
assert(
InitVal
->getType() == Ty &&
372
Op<0>() =
InitVal
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
Mangling.cpp
60
const auto *
InitVal
= GV->getInitializer();
63
if (isa<ConstantAggregateZero>(
InitVal
))
65
const auto *InitIntValue = dyn_cast<ConstantInt>(
InitVal
);
Layer.cpp
63
const auto *
InitVal
= GV.getInitializer();
66
if (isa<ConstantAggregateZero>(
InitVal
))
68
const auto *InitIntValue = dyn_cast<ConstantInt>(
InitVal
);
/src/sys/dev/acpi/acpica/
OsdMisc.c
197
AcpiOsPredefinedOverride(const ACPI_PREDEFINED_NAMES *
InitVal
,
200
if (!
InitVal
|| !NewVal)
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
Math.h
34
Vector(unsigned Length, PBQPNum
InitVal
)
36
std::fill(Data.get(), Data.get() + Length,
InitVal
);
133
Matrix(unsigned Rows, unsigned Cols, PBQPNum
InitVal
)
136
std::fill(Data.get(), Data.get() + (Rows * Cols),
InitVal
);
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
GlobalVariable.h
145
/// any existing initializer if
InitVal
==NULL. If this GV has type T*, the
147
void setInitializer(Constant *
InitVal
);
/src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oszephyr.c
592
* PARAMETERS:
InitVal
- Initial Value of the predefined object
604
const ACPI_PREDEFINED_NAMES *
InitVal
,
608
if (!
InitVal
|| !NewVal)
osunixxf.c
270
* PARAMETERS:
InitVal
- Initial value of the predefined object
282
const ACPI_PREDEFINED_NAMES *
InitVal
,
286
if (!
InitVal
|| !NewVal)
oswinxf.c
198
* PARAMETERS:
InitVal
- Initial value of the predefined object
210
const ACPI_PREDEFINED_NAMES *
InitVal
,
214
if (!
InitVal
|| !NewVal)
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ModuloSchedule.cpp
36
unsigned &
InitVal
, unsigned &LoopVal) {
39
InitVal
= 0;
43
InitVal
= Phi.getOperand(i).getReg();
47
assert(
InitVal
!= 0 && LoopVal != 0 && "Unexpected Phi structure.");
387
unsigned
InitVal
= 0;
389
getPhiRegs(*BBI, BB,
InitVal
, LoopVal);
406
InitVal
, NewReg);
439
PhiOp1 =
InitVal
;
469
PhiOp1 =
InitVal
;
1116
unsigned
InitVal
= 0
[
all
...]
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp
1003
Value *
InitVal
;
1005
InitVal
= Init->codegen();
1006
if (!
InitVal
)
1009
InitVal
= ConstantFP::get(*TheContext, APFloat(0.0));
1013
Builder->CreateStore(
InitVal
, Alloca);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp
1003
Value *
InitVal
;
1005
InitVal
= Init->codegen();
1006
if (!
InitVal
)
1009
InitVal
= ConstantFP::get(*TheContext, APFloat(0.0));
1013
Builder->CreateStore(
InitVal
, Alloca);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp
1003
Value *
InitVal
;
1005
InitVal
= Init->codegen();
1006
if (!
InitVal
)
1009
InitVal
= ConstantFP::get(*TheContext, APFloat(0.0));
1013
Builder->CreateStore(
InitVal
, Alloca);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp
986
Value *
InitVal
;
988
InitVal
= Init->codegen();
989
if (!
InitVal
)
992
InitVal
= ConstantFP::get(*TheContext, APFloat(0.0));
996
Builder->CreateStore(
InitVal
, Alloca);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp
1009
Value *
InitVal
;
1011
InitVal
= Init->codegen();
1012
if (!
InitVal
)
1015
InitVal
= ConstantFP::get(*TheContext, APFloat(0.0));
1019
Builder->CreateStore(
InitVal
, Alloca);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp
1008
Value *
InitVal
;
1010
InitVal
= Init->codegen();
1011
if (!
InitVal
)
1014
InitVal
= ConstantFP::get(*TheContext, APFloat(0.0));
1018
Builder->CreateStore(
InitVal
, Alloca);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp
900
Value *
InitVal
;
902
InitVal
= Init->Codegen();
903
if (
InitVal
== 0) return 0;
905
InitVal
= ConstantFP::get(TheContext, APFloat(0.0));
909
Builder.CreateStore(
InitVal
, Alloca);
toy.cpp
1264
Value *
InitVal
;
1266
InitVal
= Init->Codegen();
1267
if (
InitVal
== 0) return 0;
1269
InitVal
= ConstantFP::get(TheContext, APFloat(0.0));
1273
Builder.CreateStore(
InitVal
, Alloca);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp
1122
Value *
InitVal
;
1124
InitVal
= Init->Codegen();
1125
if (
InitVal
== 0) return 0;
1127
InitVal
= ConstantFP::get(TheContext, APFloat(0.0));
1131
Builder.CreateStore(
InitVal
, Alloca);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp
882
Value *
InitVal
;
884
InitVal
= Init->Codegen();
885
if (
InitVal
== 0) return 0;
887
InitVal
= ConstantFP::get(TheContext, APFloat(0.0));
891
Builder.CreateStore(
InitVal
, Alloca);
toy.cpp
1162
Value *
InitVal
;
1164
InitVal
= Init->Codegen();
1165
if (
InitVal
== 0) return 0;
1167
InitVal
= ConstantFP::get(TheContext, APFloat(0.0));
1171
Builder.CreateStore(
InitVal
, Alloca);
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp
1009
SVal
InitVal
;
1013
InitVal
= State->getSVal(InitExpr, LocCtxt);
1019
InitVal
= State->getSVal(SizeExpr, LocCtxt);
1022
State = State->bindLoc(FieldLoc,
InitVal
, LocCtxt);
/src/sys/external/bsd/acpica/dist/include/
acpiosxf.h
113
const ACPI_PREDEFINED_NAMES *
InitVal
,
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp
1179
Value *
InitVal
;
1181
InitVal
= Init->codegen();
1182
if (!
InitVal
)
1185
InitVal
= ConstantFP::get(*TheContext, APFloat(0.0));
1189
Builder->CreateStore(
InitVal
, Alloca);
Completed in 80 milliseconds
1
2
Indexes created Tue Jun 16 00:25:01 UTC 2026