HomeSort by relevance Sort by last modified time
    Searched defs:state_info (Results 1 - 6 of 6) sorted by null

  /system/core/adb/
services.cpp 337 struct state_info { struct
345 std::unique_ptr<state_info> sinfo(reinterpret_cast<state_info*>(data));
451 std::unique_ptr<state_info> sinfo(new state_info);
453 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
  /external/v8/src/compiler/
js-call-reducer.cc 121 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
126 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
450 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
455 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
459 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
475 for (int i = start_index + 1; i < state_info.parameter_count(); ++i) {
    [all...]
js-inlining.cc 228 const FrameStateFunctionInfo* state_info = local
233 bailout_id, OutputFrameStateCombine::Ignore(), state_info);
266 const FrameStateFunctionInfo* state_info = local
271 BailoutId(-1), OutputFrameStateCombine::Ignore(), state_info);
js-create-lowering.cc 295 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
305 if (state_info.shared_info().ToHandle(&shared_info)) {
352 if (state_info.shared_info().ToHandle(&shared_info)) {
391 if (state_info.shared_info().ToHandle(&shared_info)) {
435 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
500 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
986 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
1010 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
1041 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
    [all...]
instruction-selector.cc 2594 FrameStateInfo state_info = OpParameter<FrameStateInfo>(state); local
    [all...]
  /external/mksh/src/
lex.c 89 } State_info;
101 static Lex_state *push_state_i(State_info *, Lex_state *);
102 static Lex_state *pop_state_i(State_info *, Lex_state *);
150 if (++statep == state_info.end) \
151 statep = push_state_i(&state_info, statep); \
156 if (--statep == state_info.base) \
157 statep = pop_state_i(&state_info, statep); \
194 State_info state_info; local
205 state_info.base = states
    [all...]

Completed in 647 milliseconds