HomeSort by relevance Sort by last modified time
    Searched defs:new_state (Results 1 - 25 of 32) sorted by null

1 2

  /external/mesa3d/src/mesa/main/
state.c 116 GLbitfield new_state = 0x0; local
254 new_state |= _NEW_PROGRAM;
262 new_state |= _NEW_PROGRAM;
270 new_state |= _NEW_PROGRAM;
278 new_state |= _NEW_PROGRAM;
286 new_state |= _NEW_PROGRAM;
294 new_state |= _NEW_PROGRAM;
301 return new_state;
311 GLbitfield new_state = 0x0; local
317 new_state |= _NEW_PROGRAM_CONSTANTS
383 GLbitfield new_state = ctx->NewState; local
    [all...]
  /external/webrtc/talk/app/webrtc/
androidvideocapturer.cc 211 cricket::CaptureState new_state = local
213 if (new_state == current_state_)
215 current_state_ = new_state;
220 SignalStateChange(this, new_state);
  /external/webrtc/webrtc/base/
task.cc 99 int new_state = Process(state_); local
107 if (new_state == STATE_BLOCKED) {
111 state_ = new_state;
116 if (new_state == STATE_DONE) {
118 } else if (new_state == STATE_ERROR) {
  /system/bt/service/ipc/binder/
bluetooth_binder_server.cc 243 bluetooth::AdapterState new_state) {
246 << " new: " << new_state; local
247 callbacks_.ForEach([prev_state, new_state](IBluetoothCallback* callback) {
248 callback->OnBluetoothStateChange(prev_state, new_state);
  /art/runtime/
monitor_test.cc 121 LockWord::LockState new_state = lock_after.GetState(); local
124 if (LockWord::LockState::kThinLocked != new_state) {
126 ASSERT_EQ(LockWord::LockState::kThinLocked, new_state); // To fail the test.
jni_internal_test.cc 2339 IRTSegmentState new_state; local
    [all...]
  /art/runtime/openjdkjvmti/
events.cc 292 bool new_state = listener->IsEnabled(); local
294 if (old_state != new_state) {
295 if (new_state) {
746 bool new_state = global_mask.Test(event); local
749 if (new_state != old_state) {
  /bionic/libc/upstream-netbsd/common/lib/libc/stdlib/
random.c 411 int *new_state; local
418 new_state = (int *)(void *)arg_state;
419 type = (int)(new_state[0] % MAX_TYPES);
420 rear = (int)(new_state[0] / MAX_TYPES);
441 state = (int *) (new_state + 1);
  /external/libmojo/mojo/edk/system/
data_pipe_consumer_dispatcher.cc 270 HandleSignalsState new_state = GetHandleSignalsStateNoLock(); local
271 if (!new_state.equals(old_state))
272 awakable_list_.AwakeForStateChange(new_state);
data_pipe_producer_dispatcher.cc 180 HandleSignalsState new_state = GetHandleSignalsStateNoLock(); local
181 if (!new_state.equals(old_state))
182 awakable_list_.AwakeForStateChange(new_state);
252 HandleSignalsState new_state = GetHandleSignalsStateNoLock(); local
253 if (new_state.satisfies(MOJO_HANDLE_SIGNAL_WRITABLE))
254 awakable_list_.AwakeForStateChange(new_state);
  /external/webrtc/webrtc/libjingle/xmpp/
pubsubstateclient.h 47 C new_state; member in struct:buzz::PubSubStateChange
175 C new_state; local
177 bool retracted = !ParseStateItem(item, &info, &new_state);
188 new_state = default_state_;
200 if ((retracted && !has_old_state) || StatesEqual(new_state, old_state)) {
205 if (retracted || StatesEqual(new_state, default_state_)) {
209 state_by_key_[key] = new_state;
219 change.new_state = new_state;
chatroommoduleimpl.cc 68 XmppReturnStatus ClientChangeMyPresence(XmppChatroomState new_state);
69 XmppReturnStatus ChangePresence(XmppChatroomState new_state, const XmlElement* presence, bool isServer);
406 XmppChatroomState new_state; member in struct:buzz::StateTransitionDescription
508 XmppChatroomModuleImpl::ClientChangeMyPresence(XmppChatroomState new_state) {
509 return ChangePresence(new_state, NULL, false);
514 XmppChatroomState new_state; local
517 new_state = XMPP_CHATROOM_STATE_IN_ROOM;
519 new_state = XMPP_CHATROOM_STATE_NOT_IN_ROOM;
521 return ChangePresence(new_state, &presence, true);
526 XmppChatroomModuleImpl::ChangePresence(XmppChatroomState new_state,
    [all...]
  /external/wpa_supplicant_8/src/fst/
fst_ctrl_aux.h 57 enum fst_session_state new_state; member in struct:fst_event_extra::fst_event_extra_session_state
  /toolchain/binutils/binutils-2.25/libiberty/
random.c 329 register long int *new_state = (long int *) arg_state;
330 register int type = new_state[0] % MAX_TYPES;
331 register int rear = new_state[0] / MAX_TYPES;
356 state = &new_state[1];
326 register long int *new_state = (long int *) arg_state; local
  /bionic/libc/bionic/
pthread_mutex.cpp 480 int new_state = MUTEX_STATE_BITS_FLIP_CONTENTION(old_state); local
482 &old_state, new_state,
487 old_state = new_state;
pthread_rwlock.cpp 277 int new_state = old_state + STATE_READER_COUNT_CHANGE_STEP; local
278 if (__predict_false(!__state_owned_by_readers(new_state))) { // Happens when reader count overflows.
281 if (__predict_true(atomic_compare_exchange_weak_explicit(&rwlock->state, &old_state, new_state,
  /external/selinux/libsepol/src/
conditional.c 310 int new_state; local
313 new_state = cond_evaluate_expr(p, node->expr);
314 if (new_state != node->cur_state) {
315 node->cur_state = new_state;
316 if (new_state == -1)
321 if (new_state <= 0) {
330 if (new_state) {
  /art/runtime/arch/
stub_test.cc 605 LockWord::LockState new_state = lock_after.GetState(); local
606 EXPECT_EQ(LockWord::LockState::kThinLocked, new_state);
682 LockWord::LockState new_state = lock_after.GetState(); variable
683 EXPECT_EQ(LockWord::LockState::kUnlocked, new_state);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 129 ProgramStateRef new_state = makeWithStore(newStore); local
131 Mgr.getOwningEngine()->processRegionChange(new_state, R) :
132 new_state;
  /external/openssh/
krl.c 453 int new_state; local
499 new_state = KRL_SECTION_CERT_SERIAL_BITMAP;
502 new_state = KRL_SECTION_CERT_SERIAL_RANGE;
506 new_state = KRL_SECTION_CERT_SERIAL_LIST;
510 new_state = KRL_SECTION_CERT_SERIAL_BITMAP;
520 (long long unsigned)cost_bitmap_restart, new_state,
522 return new_state;
    [all...]
  /frameworks/native/libs/vr/libbufferhub/include/private/dvr/
bufferhub_rpc.h 41 uint64_t new_state; local
44 new_state = (old_state & ~clear_mask) | set_mask;
45 } while (!buffer_state->compare_exchange_weak(old_state, new_state));
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state.c 2211 GLuint new_state = rmesa->radeon.NewGLState; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_state.c 1993 GLuint new_state = rmesa->radeon.NewGLState; local
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiScannerFacade.java 550 int new_state = 0; local
554 new_state = current_state ^ 0x1;
556 new_state = alwaysAvailable ? 1 : 0;
558 Global.putInt(mService.getContentResolver(), Global.WIFI_SCAN_ALWAYS_AVAILABLE, new_state); local
  /external/mesa3d/src/mesa/tnl/
t_context.h 273 GLuint new_state; member in struct:tnl_pipeline

Completed in 692 milliseconds

1 2