/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_flow.c | 217 lp_build_loop_begin(struct lp_build_loop_state *state, 224 state->block = lp_build_insert_new_block(gallivm, "loop_begin"); 226 state->counter_var = lp_build_alloca(gallivm, LLVMTypeOf(start), "loop_counter"); 227 state->gallivm = gallivm; 229 LLVMBuildStore(builder, start, state->counter_var); 231 LLVMBuildBr(builder, state->block); 233 LLVMPositionBuilderAtEnd(builder, state->block); 235 state->counter = LLVMBuildLoad(builder, state->counter_var, ""); 240 lp_build_loop_end_cond(struct lp_build_loop_state *state, [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
SimpleConstraintManager.h | 36 ProgramStateRef assume(ProgramStateRef state, DefinedSVal Cond, 39 ProgramStateRef assume(ProgramStateRef state, Loc Cond, bool Assumption); 41 ProgramStateRef assume(ProgramStateRef state, NonLoc Cond, bool Assumption); 43 ProgramStateRef assumeSymRel(ProgramStateRef state, 56 virtual ProgramStateRef assumeSymNE(ProgramStateRef state, SymbolRef sym, 60 virtual ProgramStateRef assumeSymEQ(ProgramStateRef state, SymbolRef sym, 64 virtual ProgramStateRef assumeSymLT(ProgramStateRef state, SymbolRef sym, 68 virtual ProgramStateRef assumeSymGT(ProgramStateRef state, SymbolRef sym, 72 virtual ProgramStateRef assumeSymLE(ProgramStateRef state, SymbolRef sym, 76 virtual ProgramStateRef assumeSymGE(ProgramStateRef state, SymbolRef sym [all...] |
/external/grub/stage2/ |
console.c | 35 console_setcolorstate (color_state state) 37 switch (state) { 52 console_color_state = state;
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_flow.c | 217 lp_build_loop_begin(struct lp_build_loop_state *state, 224 state->block = lp_build_insert_new_block(gallivm, "loop_begin"); 226 state->counter_var = lp_build_alloca(gallivm, LLVMTypeOf(start), "loop_counter"); 227 state->gallivm = gallivm; 229 LLVMBuildStore(builder, start, state->counter_var); 231 LLVMBuildBr(builder, state->block); 233 LLVMPositionBuilderAtEnd(builder, state->block); 235 state->counter = LLVMBuildLoad(builder, state->counter_var, ""); 240 lp_build_loop_end_cond(struct lp_build_loop_state *state, [all...] |
/frameworks/rs/ |
rsFBOCache.cpp | 28 mHal.state.colorTargetsCount = 1; 29 mHal.state.colorTargets = new Allocation*[mHal.state.colorTargetsCount]; 30 mColorTargets = new ObjectBaseRef<Allocation>[mHal.state.colorTargetsCount]; 35 delete[] mHal.state.colorTargets; 48 if (slot >= mHal.state.colorTargetsCount) { 53 if (!(a->getIsTexture() || (a->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT))) { 59 mHal.state.colorTargets[slot] = a; 71 mHal.state.depthTarget = a; 76 for (uint32_t i = 0; i < mHal.state.colorTargetsCount; i ++) [all...] |
rsType.cpp | 49 if (mHal.state.lodCount) { 50 delete [] mHal.state.lodDimX; 51 delete [] mHal.state.lodDimY; 52 delete [] mHal.state.lodDimZ; 66 uint32_t oldLODCount = mHal.state.lodCount; 68 uint32_t l2x = rsFindHighBit(mHal.state.dimX) + 1; 69 uint32_t l2y = rsFindHighBit(mHal.state.dimY) + 1; 70 uint32_t l2z = rsFindHighBit(mHal.state.dimZ) + 1; 72 mHal.state.lodCount = rsMax(l2x, l2y); 73 mHal.state.lodCount = rsMax(mHal.state.lodCount, l2z) [all...] |
/hardware/broadcom/wlan/bcmdhd/bcmdhd_net_iface/ |
bcmdhd_net_iface.c | 29 } state; variable in typeref:struct:net_if_snd_cmd_state 32 state.sock = socket(AF_INET, SOCK_DGRAM, 0); 33 if (state.sock < 0) { 56 bc += snprintf(&state.cmd[bc], sizeof(state.cmd) - bc, "%s ", argv[i]); 57 if (bc >= sizeof(state.cmd)) { 61 state.cmd[bc] = '\0'; 65 strncpy(state.ibuf, state.cmd, INTERFACE_MAX_BUFFER_SIZE); 67 priv_cmd.buf = state.ibuf [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/ |
null_ctor.pass.cpp | 29 int state() const {return state_;} function in class:Deleter 37 assert(d.state() == 0); 43 assert(d.state() == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.dtor/ |
null.pass.cpp | 29 int state() const {return state_;} function in class:Deleter 37 assert(d.state() == 0); 43 assert(d.state() == 0);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCLexer.java | 41 public SimpleCLexer(CharStream input, RecognizerSharedState state) { 42 super(input,state); 59 state.type = _type; 60 state.channel = _channel; 79 state.type = _type; 80 state.channel = _channel; 99 state.type = _type; 100 state.channel = _channel; 119 state.type = _type; 120 state.channel = _channel [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCLexer.java | 41 public SimpleCLexer(CharStream input, RecognizerSharedState state) { 42 super(input,state); 59 state.type = _type; 60 state.channel = _channel; 79 state.type = _type; 80 state.channel = _channel; 99 state.type = _type; 100 state.channel = _channel; 119 state.type = _type; 120 state.channel = _channel [all...] |
/external/chromium/chrome/browser/download/ |
download_request_infobar_delegate_unittest.cc | 73 MockTabDownloadState state; local 74 state.infobar()->Accept(); 75 EXPECT_TRUE(state.accepted()); 79 MockTabDownloadState state; local 80 state.infobar()->Cancel(); 81 EXPECT_FALSE(state.accepted()); 85 MockTabDownloadState state; local 86 state.close_infobar(); 87 EXPECT_FALSE(state.accepted());
|
/external/chromium/chrome/browser/history/ |
download_types.cc | 12 int32 state, 20 state(state), 35 state(-1),
|
/external/chromium/chrome/browser/sync/notifier/ |
state_writer.h | 5 // Simple interface for something that persists state. 19 virtual void WriteState(const std::string& state) = 0;
|
/external/chromium_org/chrome/browser/sync/glue/ |
backend_data_type_configurer.cc | 13 DataTypeConfigState state, const DataTypeConfigStateMap& state_map) { 17 if (type_it->second == state) 25 DataTypeConfigState state, syncer::ModelTypeSet types, 28 (*state_map)[it.Get()] = state;
|
/external/chromium_org/cloud_print/gcp20/prototype/ |
local_print_job.cc | 13 LocalPrintJob::Info::Info() : state(STATE_DRAFT), expires_in(-1) {
|
/external/chromium_org/content/public/renderer/ |
media_stream_sink.h | 16 // about state changes on a blink::WebMediaStreamSource object or such an 21 blink::WebMediaStreamSource::ReadyState state) {}
|
/external/chromium_org/media/video/capture/ |
video_capture_proxy.cc | 14 // Called on VC thread: extracts the state out of the VideoCapture, and 18 media::VideoCaptureHandlerProxy::VideoCaptureState state; local 19 state.started = capture->CaptureStarted(); 20 state.frame_rate = capture->CaptureFrameRate(); 21 return state; 93 const VideoCaptureState& state) { 94 state_ = state; 100 const VideoCaptureState& state) { 101 state_ = state; 107 const VideoCaptureState& state) { [all...] |
/external/chromium_org/sync/internal_api/public/sessions/ |
model_neutral_state.cc | 31 bool HasSyncerError(const ModelNeutralState& state) { 32 const bool get_key_error = SyncerErrorIsError(state.last_get_key_result); 34 SyncerErrorIsError(state.last_download_updates_result); 35 const bool commit_error = SyncerErrorIsError(state.commit_result);
|
/external/chromium_org/sync/notifier/ |
invalidation_handler.h | 17 // Called when the invalidator state changes. 18 virtual void OnInvalidatorStateChange(InvalidatorState state) = 0; 22 // called regardless of the current invalidator state.
|
invalidator_state.cc | 11 const char* InvalidatorStateToString(InvalidatorState state) { 12 switch (state) { 41 InvalidatorState state) { 42 switch (state) {
|
state_writer.h | 5 // Simple interface for something that persists state. 20 virtual void WriteState(const std::string& state) = 0;
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
MediaQueryListListener.cpp | 28 void MediaQueryListListener::queryChanged(ScriptState* state, MediaQueryList* query) 30 ScriptCallback callback(state, m_value); 31 v8::HandleScope handleScope(state->isolate()); 33 v8::Handle<v8::Context> context = state->context();
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
CheckboxInputType.cpp | 76 OwnPtr<ClickHandlingState> state = adoptPtr(new ClickHandlingState); local 78 state->checked = element().checked(); 79 state->indeterminate = element().indeterminate(); 81 if (state->indeterminate) 84 element().setChecked(!state->checked, DispatchChangeEvent); 86 return state.release(); 89 void CheckboxInputType::didDispatchClick(Event* event, const ClickHandlingState& state) 92 element().setIndeterminate(state.indeterminate); 93 element().setChecked(state.checked);
|
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-null/ |
graw_util.c | 19 struct pipe_shader_state state; local 24 state.tokens = tokens; 25 return pipe->create_gs_state(pipe, &state); 33 struct pipe_shader_state state; local 38 state.tokens = tokens; 39 return pipe->create_vs_state(pipe, &state); 47 struct pipe_shader_state state; local 52 state.tokens = tokens; 53 return pipe->create_fs_state(pipe, &state);
|