/external/v8/src/compiler/ |
control-builders.cc | 14 else_environment_ = environment()->CopyForConditional(); 23 then_environment_ = environment(); 30 then_environment_->Merge(environment()); 36 loop_environment_ = environment()->CopyForLoop(assigned, is_osr); 37 continue_environment_ = environment()->CopyAsUnreachable(); 38 break_environment_ = environment()->CopyAsUnreachable(); 43 continue_environment_->Merge(environment()); 44 environment()->MarkAsUnreachable(); 49 break_environment_->Merge(environment()); 50 environment()->MarkAsUnreachable() [all...] |
ast-graph-builder.cc | 57 Environment* environment() const { return owner_->environment(); } function in class:v8::internal::compiler::BASE_EMBEDDED 117 depth_(builder_->environment()->context_chain_length()) { 118 builder_->environment()->PushContext(context); // Push. 124 builder_->environment()->PopContext(); 125 CHECK_EQ(depth_, builder_->environment()->context_chain_length()); 151 context_length_(builder->environment()->context_chain_length()), 152 stack_height_(builder->environment()->stack_height()) { 176 // this also drops extra operands from the environment for each skipped scope 197 Environment* environment() { return builder_->environment(); } function in class:v8::internal::compiler::BASE_EMBEDDED [all...] |
/external/v8/src/crankshaft/ |
hydrogen-osr.cc | 44 HEnvironment *environment = builder_->environment(); local 45 int first_expression_index = environment->first_expression_index(); 46 int length = environment->length(); 51 = builder_->Add<HUnknownOSRValue>(environment, i); 52 environment->Bind(i, osr_value); 57 environment->Drop(length - first_expression_index); 60 = builder_->Add<HUnknownOSRValue>(environment, i); 61 environment->Push(osr_value); 67 environment->local_count() + environment->push_count() [all...] |
lithium-codegen.cc | 129 if (instr->HasEnvironment() && !instr->environment()->has_been_used()) { 130 V8_Fatal(__FILE__, __LINE__, "unused environment for %s (%s)", 204 void LCodeGenBase::WriteTranslationFrame(LEnvironment* environment, 206 int translation_size = environment->translation_size(); 208 int height = translation_size - environment->parameter_count(); 210 switch (environment->frame_type()) { 213 environment->entry() ? environment->entry()->shared() 215 translation->BeginJSFrame(environment->ast_id(), shared_id, height); 216 if (info()->closure().is_identical_to(environment->closure())) [all...] |
/external/opencv3/3rdparty/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...] |
/external/compiler-rt/test/asan/Unit/ |
lit.site.cfg.in | 11 (new_path, config.environment.get('LD_LIBRARY_PATH', ''))) 12 config.environment['LD_LIBRARY_PATH'] = new_ld_library_path
|
/art/compiler/optimizing/ |
licm.cc | 27 * Returns whether `instruction` has all its inputs and environment defined 42 for (HEnvironment* environment = instruction->GetEnvironment(); 43 environment != nullptr; 44 environment = environment->GetParent()) { 45 for (size_t i = 0, e = environment->Size(); i < e; ++i) { 46 HInstruction* input = environment->GetInstructionAt(i); 50 // We can move an instruction that takes a loop header phi in the environment: 64 * If `environment` has a loop header phi, we replace it with its first input. 66 static void UpdateLoopPhisIn(HEnvironment* environment, HLoopInformation* info) [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
ProcessBuilderTest.java | 53 pb.environment().put("A", "android"); 93 Map<String, String> environment = pb.environment(); local 94 Map<String, String> before = new HashMap<String, String>(environment); 96 environment.put("A", null); 101 environment.put(null, "android"); 105 assertEquals(before, environment);
|
/system/connectivity/shill/shims/ |
openvpn_script.cc | 27 #include "shill/shims/environment.h" 30 using shill::shims::Environment; 39 Environment* environment = Environment::GetInstance(); local 41 if (!environment->GetVariable(shill::kRPCTaskServiceVariable, &service) || 42 !environment->GetVariable(shill::kRPCTaskPathVariable, &path) || 43 !environment->GetVariable("script_type", &reason)) { 44 LOG(ERROR) << "Environment variables not available."; 55 map<string, string> env = environment->AsMap() [all...] |
/cts/tests/tests/hardware/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...] |
FrequencyVerification.java | 64 * @param environment the test environment 67 public static FrequencyVerification getDefault(TestSensorEnvironment environment) { 68 Sensor sensor = environment.getSensor(); 89 if (environment.isSensorSamplingRateOverloaded()) { 94 double delayUs = environment.getRequestedSamplingPeriodUs(); 117 public void verify(TestSensorEnvironment environment, SensorStats stats) { 132 environment.getSensor().getName(), 133 environment.getFrequencyString(),
|
EventBasicVerification.java | 79 * @param environment The test environment 81 * environment. 84 TestSensorEnvironment environment, 90 long sampleUs = environment.getExpectedSamplingPeriodUs(); 92 long askedBatchUs = environment.getMaxReportLatencyUs(); 94 long reservedFifoUs = sampleUs * environment.getSensor().getFifoReservedEventCount(); //>=0 98 sampleUs * environment.getSensor().getFifoMaxEventCount(), reservedFifoUs); //>=0 101 Math.max(ALLOWED_SENSOR_START_DELAY_US, environment.getAllowedSensorStartDelay()) - 104 boolean isSingleSensorTest = !environment.isIntegrationTest() [all...] |
/external/dbus/dbus/ |
dbus-sysdeps-util.c | 44 * environment. Use dbus_free_string_array to free it. 46 * @returns the environment or #NULL on OOM 52 char **environment; local 61 environment = dbus_new0 (char *, length); 63 if (environment == NULL) 68 environment[i] = _dbus_strdup (environ[i]); 70 if (environment[i] == NULL) 76 dbus_free_string_array (environment); 77 environment = NULL; 80 return environment; [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/ |
fwd.hpp | 12 // Description : environment subsystem forward declarations 19 #error Windows CE does not support environment variables. 29 namespace environment { namespace in namespace:boost::BOOST_RT_PARAM_NAMESPACE 48 } // namespace environment
|
modifier.hpp | 28 namespace environment { namespace in namespace:boost::BOOST_RT_PARAM_NAMESPACE 31 // ************** environment variable modifiers ************** // 41 } // namespace environment
|
environment.hpp | 12 // Description : defines and implements inline model of program environment 19 #error Windows CE does not support environment variables. 43 // ************** runtime::environment implementation ************** // 46 namespace environment { namespace in namespace:boost::BOOST_RT_PARAM_NAMESPACE 93 } // namespace environment 96 // ************** runtime::environment ************** // 99 namespace environment { namespace in namespace:boost::BOOST_RT_PARAM_NAMESPACE 113 return environment::variable<T>( !vd ? rt_env_detail::init_new_var<T>( var_name, nfp::no_params ) : *vd ); 124 return environment::variable<T>( !vd ? rt_env_detail::init_new_var<T>( var_name, m ) : *vd ); 133 return environment::var<cstring>( var_name ).value() [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/environment/ |
ShadowMap.java | 17 package com.badlogic.gdx.graphics.g3d.environment;
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/utils/ |
AllLightFilter.java | 20 import com.badlogic.gdx.graphics.g3d.environment.BaseLight;
|
DirectionalAnalyzer.java | 20 import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight;
|
LightFilter.java | 20 import com.badlogic.gdx.graphics.g3d.environment.BaseLight;
|
ShadowMapAllocator.java | 19 import com.badlogic.gdx.graphics.g3d.environment.BaseLight;
|
/cts/tests/tests/hardware/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));
|
/external/chromium-trace/catapult/telemetry/telemetry/ |
benchmark_runner.py | 137 def ProcessCommandLineArgs(cls, parser, args, environment): 139 args.benchmarks = _Benchmarks(environment) 142 environment, exact_matches=False) 177 def AddCommandLineArgs(cls, parser, environment): 183 matching_benchmarks += _MatchBenchmarkName(arg, environment) 195 def ProcessCommandLineArgs(cls, parser, args, environment): 196 all_benchmarks = _Benchmarks(environment) 204 matching_benchmarks = _MatchBenchmarkName(input_benchmark_name, environment) 248 def _Benchmarks(environment): 250 for search_dir in environment.benchmark_dirs [all...] |