HomeSort by relevance Sort by last modified time
    Searched refs:environment (Results 1 - 25 of 1557) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/compiler/
control-builders.cc 16 else_environment_ = environment()->CopyForConditional();
25 then_environment_ = environment();
32 then_environment_->Merge(environment());
38 loop_environment_ = environment()->CopyForLoop(assigned, is_osr);
39 continue_environment_ = environment()->CopyAsUnreachable();
40 break_environment_ = environment()->CopyAsUnreachable();
46 continue_environment_->Merge(environment());
47 environment()->MarkAsUnreachable();
52 break_environment_->Merge(environment());
53 environment()->MarkAsUnreachable()
    [all...]
bytecode-graph-builder.cc 23 // The abstract execution environment simulates the content of the interpreter
24 // register file. The environment performs SSA-renaming of all tracked nodes at
26 class BytecodeGraphBuilder::Environment : public ZoneObject {
28 Environment(BytecodeGraphBuilder* builder, int register_count,
31 // Specifies whether environment binding methods should attach frame state
52 // Effect dependency tracked by this environment.
58 // Preserve a checkpoint of the environment for the IR graph. Any
59 // further mutation of the environment will not affect checkpoints.
64 // Control dependency tracked by this environment.
73 Environment* Copy()
    [all...]
  /external/v8/src/crankshaft/
hydrogen-osr.cc 45 HEnvironment *environment = builder_->environment(); local
46 int first_expression_index = environment->first_expression_index();
47 int length = environment->length();
52 = builder_->Add<HUnknownOSRValue>(environment, i);
53 environment->Bind(i, osr_value);
58 environment->Drop(length - first_expression_index);
61 = builder_->Add<HUnknownOSRValue>(environment, i);
62 environment->Push(osr_value);
68 environment->local_count() + environment->push_count()
    [all...]
lithium-codegen.cc 137 if (instr->HasEnvironment() && !instr->environment()->has_been_used()) {
138 V8_Fatal(__FILE__, __LINE__, "unused environment for %s (%s)",
218 void LCodeGenBase::WriteTranslationFrame(LEnvironment* environment,
220 int translation_size = environment->translation_size();
222 int height = translation_size - environment->parameter_count();
224 switch (environment->frame_type()) {
227 environment->entry() ? environment->entry()->shared()
229 translation->BeginJSFrame(environment->ast_id(), shared_id, height);
230 if (info()->closure().is_identical_to(environment->closure()))
    [all...]
  /external/libmojo/third_party/jinja2/
optimizer.py 23 def optimize(node, environment):
26 optimizer = Optimizer(environment)
32 def __init__(self, environment):
33 self.environment = environment
60 environment=self.environment)
lexer.py 189 def compile_rules(environment):
190 """Compiles all the rules from the environment into a list of rules."""
193 (len(environment.comment_start_string), 'comment',
194 e(environment.comment_start_string)),
195 (len(environment.block_start_string), 'block',
196 e(environment.block_start_string)),
197 (len(environment.variable_start_string), 'variable',
198 e(environment.variable_start_string))
201 if environment.line_statement_prefix is not None:
202 rules.append((len(environment.line_statement_prefix), 'linestatement'
    [all...]
loaders.py 39 implement a custom loading mechanism. The environment provides a
54 def get_source(self, environment, template):
70 def get_source(self, environment, template):
72 It's passed the environment and template name and has to return a
100 def load(self, environment, name, globals=None):
113 source, filename, uptodate = self.get_source(environment, name)
117 bcc = environment.bytecode_cache
119 bucket = bcc.get_bucket(environment, name, filename, source)
125 code = environment.compile(source, name, filename)
134 return environment.template_class.from_code(environment, code
    [all...]
  /art/compiler/optimizing/
licm.cc 28 * Returns whether `instruction` has all its inputs and environment defined
43 for (HEnvironment* environment = instruction->GetEnvironment();
44 environment != nullptr;
45 environment = environment->GetParent()) {
46 for (size_t i = 0, e = environment->Size(); i < e; ++i) {
47 HInstruction* input = environment->GetInstructionAt(i);
51 // We can move an instruction that takes a loop header phi in the environment:
65 * If `environment` has a loop header phi, we replace it with its first input.
67 static void UpdateLoopPhisIn(HEnvironment* environment, HLoopInformation* info)
    [all...]
  /external/tensorflow/tensorflow/contrib/specs/python/
specs.py 29 def eval_params(params, environment=None):
30 """Evaluates a parameter specification and returns the environment.
34 environment: a dictionary of input bindings
37 Environment with additional bindings created by
45 if environment:
46 bindings.update(environment)
51 def eval_spec(spec, environment=None):
52 """Evaluates a spec and returns the environment.
55 in an environment. That is useful if you use the spec language to
62 environment: a dictionary of input binding
    [all...]
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
RobolectricProcessor.java 67 public synchronized void init(ProcessingEnvironment environment) {
68 super.init(environment);
69 processOptions(environment.getOptions());
70 model = new RobolectricModel(environment.getElementUtils(), environment.getTypeUtils());
72 addValidator(new ImplementationValidator(model, environment));
73 addValidator(new ImplementsValidator(model, environment));
74 addValidator(new RealObjectValidator(model, environment));
75 addValidator(new ResetterValidator(model, environment));
77 generators.add(new ShadowProviderGenerator(model, environment, shadowPackage, shouldInstrumentPackages))
    [all...]
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
BatchArrivalVerification.java 55 * @param environment the test environment
58 public static BatchArrivalVerification getDefault(TestSensorEnvironment environment) {
59 if (environment.getSensor().getReportingMode() != Sensor.REPORTING_MODE_CONTINUOUS) {
62 long fifoMaxEventCount = environment.getSensor().getFifoMaxEventCount();
63 int maximumExpectedSamplingPeriodUs = environment.getMaximumExpectedSamplingPeriodUs();
64 long reportLatencyUs = environment.getMaxReportLatencyUs();
71 if (environment.isDeviceSuspendTest() && !environment.getSensor().isWakeUpSensor()) {
89 public void verify(TestSensorEnvironment environment, SensorStats stats)
    [all...]
FifoLengthVerification.java 58 * @param environment the test environment
62 TestSensorEnvironment environment) {
63 if (environment.getSensor().getReportingMode() != Sensor.REPORTING_MODE_CONTINUOUS) {
66 long expectedReportLatencyUs = environment.getMaxReportLatencyUs();
67 long fifoReservedEventCount = environment.getSensor().getFifoReservedEventCount();
68 int maximumExpectedSamplingPeriodUs = environment.getMaximumExpectedSamplingPeriodUs();
74 if (environment.isDeviceSuspendTest() && !environment.getSensor().isWakeUpSensor()) {
93 public void verify(TestSensorEnvironment environment, SensorStats stats)
    [all...]
EventBasicVerification.java 81 * @param environment The test environment
83 * environment.
86 TestSensorEnvironment environment,
92 long sampleUs = environment.getExpectedSamplingPeriodUs();
94 long askedBatchUs = environment.getMaxReportLatencyUs();
96 long reservedFifoUs = sampleUs * environment.getSensor().getFifoReservedEventCount(); //>=0
100 sampleUs * environment.getSensor().getFifoMaxEventCount(), reservedFifoUs); //>=0
103 Math.max(ALLOWED_SENSOR_START_DELAY_US, environment.getAllowedSensorStartDelay()) -
106 boolean isSingleSensorTest = !environment.isIntegrationTest()
    [all...]
ISensorVerification.java 49 void verify(TestSensorEnvironment environment, SensorStats stats);
EventGapVerification.java 54 * @param environment the test environment
57 public static EventGapVerification getDefault(TestSensorEnvironment environment) {
58 if (environment.getSensor().getReportingMode() != Sensor.REPORTING_MODE_CONTINUOUS) {
61 return new EventGapVerification(environment.getExpectedSamplingPeriodUs());
68 public void verify(TestSensorEnvironment environment, SensorStats stats) {
69 if (environment.isSensorSamplingRateOverloaded()) {
  /external/tensorflow/tensorflow/contrib/ffmpeg/default/
ffmpeg_lib_utility_test.cc 40 Env* environment = Env::Default(); local
41 thread::ThreadPool pool(environment, "test", kNumThreads);
50 pool.Schedule([&mu, &temp_filenames, environment]() {
54 TF_QCHECK_OK(environment->DeleteFile(buffer[j]));
  /cts/tests/sensor/src/android/hardware/cts/
SensorBatchingFifoTest.java 90 TestSensorEnvironment environment = new TestSensorEnvironment(getContext(), local
97 int postFlushMs = environment.getExpectedSamplingPeriodUs() * 100 /1000;
99 environment.getSensor().getFifoReservedEventCount() *
100 environment.getExpectedSamplingPeriodUs() / (int)(1000 / 1.2); // 120%
103 environment, new int [] { preFlushMs, testFlushMs, postFlushMs }, -1);
105 op.addVerification(FifoLengthVerification.getDefault(environment));
  /libcore/ojluni/src/main/java/java/lang/
ProcessBuilder.java 59 * <li>an <i>environment</i>, which is a system-dependent mapping from
61 * the environment of the current process (see {@link System#getenv()}).
143 * and environment is easy:
150 * directory and environment, and redirects standard output and error
156 * Map<String, String> env = pb.environment();
170 * <p>To start a process with an explicit set of environment
172 * before adding environment variables.
182 private Map<String,String> environment; field in class:ProcessBuilder
272 * Returns a string map view of this process builder's environment.
274 * Whenever a process builder is created, the environment i
339 public Map<String,String> environment() { method in class:ProcessBuilder
353 ProcessBuilder environment(String[] envp) { method in class:ProcessBuilder
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/base/
env.go 9 // EnvForDir returns a copy of the environment
11 // The environment is the current process's environment
20 // MergeEnvLists merges the two environment lists such that
  /prebuilts/go/linux-x86/src/cmd/go/internal/base/
env.go 9 // EnvForDir returns a copy of the environment
11 // The environment is the current process's environment
20 // MergeEnvLists merges the two environment lists such that
  /system/extras/simpleperf/
environment_test.cpp 23 #include "environment.h"
25 TEST(environment, GetCpusFromString) {
32 TEST(environment, PrepareVdsoFile) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
CacheProcessing.java 94 public Bitmap apply(FilterEnvironment environment, Bitmap cacheBitmap) {
118 cacheBitmap = environment.applyRepresentation(representation, cacheBitmap);
122 environment.cache(source);
133 FilterEnvironment environment) {
136 return environment.getBitmapCopy(originalBitmap, BitmapCache.PREVIEW_CACHE_NO_FILTERS);
139 environment.getBimapCache().setCacheProcessing(this);
169 environment.cache(cacheStep.cache);
193 cacheBitmap = environment.getBitmapCopy(originalBitmap,
198 cacheBitmap = step.apply(environment, cacheBitmap);
200 environment.cache(prev)
    [all...]
  /system/chre/build/nanoapp/
app.mk 43 $(error "You must run lunch, or specify an explicit CHRE_PREFIX environment \
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/generator/
ServiceLoaderGenerator.java 21 public ServiceLoaderGenerator(ProcessingEnvironment environment, String shadowPackage) {
22 this.filer = environment.getFiler();
23 this.messager = environment.getMessager();
  /external/ImageMagick/
Make.com 92 $ define/nolog magickshr 'f$environment("default")'magickshr.exe
118 $display:==$'f$environment("default")'display
130 $import:==$'f$environment("default")'import
142 $animate:==$'f$environment("default")'animate
154 $montage:==$'f$environment("default")'montage
166 $mogrify:==$'f$environment("default")'mogrify
178 $convert:==$'f$environment("default")'convert
189 $compare:==$'f$environment("default")'compare
200 $identify:==$'f$environment("default")'identify
211 $composite:==$'f$environment("default")'composit
    [all...]

Completed in 385 milliseconds

1 2 3 4 5 6 7 8 91011>>