HomeSort by relevance Sort by last modified time
    Searched defs:state (Results 51 - 75 of 5034) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_gs.c 47 struct lp_geometry_shader *state; local
49 state = CALLOC_STRUCT(lp_geometry_shader);
50 if (!state)
55 debug_printf("llvmpipe: Create geometry shader %p:\n", (void *)state);
60 state->no_tokens = !templ->tokens;
61 memcpy(&state->stream_output, &templ->stream_output, sizeof state->stream_output);
64 state->dgs = draw_create_geometry_shader(llvmpipe->draw, templ);
65 if (state->dgs == NULL) {
70 return state;
98 struct lp_geometry_shader *state = local
    [all...]
  /external/mesa3d/src/mesa/program/
arbprogparse.c 44 + a state variable, like "state.fog.color", or
73 struct asm_parser_state state; local
79 memset(&state, 0, sizeof(state));
80 state.prog = &prog;
83 &state)) {
119 program->OriginUpperLeft = state.option.OriginUpperLeft;
120 program->PixelCenterInteger = state.option.PixelCenterInteger;
122 program->info.fs.uses_discard = state.fragment.UsesKill
166 struct asm_parser_state state; local
    [all...]
  /external/nanopb-c/
pb_decode.h 22 * 2) You can use state to store your own data (e.g. buffer pointer),
40 void *state; /* Free field for use by callback implementation */ member in struct:_pb_istream_t
  /external/ppp/pppd/
sha1.h 20 u_int32_t state[5]; member in struct:__anon32070
  /external/skia/tests/
PathOpsOpCubicThreadedTest.cpp 18 PathOpsThreadState& state = *data; local
28 pathA.moveTo(SkIntToScalar(state.fA), SkIntToScalar(state.fB));
29 pathA.cubicTo(SkIntToScalar(state.fC), SkIntToScalar(state.fD), SkIntToScalar(b),
34 pathB.cubicTo(SkIntToScalar(c), SkIntToScalar(d), SkIntToScalar(state.fB),
35 SkIntToScalar(state.fA), SkIntToScalar(state.fD), SkIntToScalar(state.fC));
38 if (state.fReporter->verbose())
    [all...]
  /external/skia/tools/sk_app/android/
main_android.cpp 23 void android_main(struct android_app* state) {
38 state)); local
53 source->process(state, source);
57 if (state->destroyRequested != 0) {
  /external/skqp/tests/
PathOpsOpCubicThreadedTest.cpp 18 PathOpsThreadState& state = *data; local
28 pathA.moveTo(SkIntToScalar(state.fA), SkIntToScalar(state.fB));
29 pathA.cubicTo(SkIntToScalar(state.fC), SkIntToScalar(state.fD), SkIntToScalar(b),
34 pathB.cubicTo(SkIntToScalar(c), SkIntToScalar(d), SkIntToScalar(state.fB),
35 SkIntToScalar(state.fA), SkIntToScalar(state.fD), SkIntToScalar(state.fC));
38 if (state.fReporter->verbose())
    [all...]
  /external/skqp/tools/sk_app/android/
main_android.cpp 23 void android_main(struct android_app* state) {
38 state)); local
53 source->process(state, source);
57 if (state->destroyRequested != 0) {
  /external/syslinux/com32/libutil/include/
md5.h 35 uint32_t state[4]; /* state (ABCD) */ member in struct:__anon37051
  /external/syslinux/gpxe/src/crypto/
chap.c 49 void *state; local
58 state = malloc ( state_len );
59 if ( ! state ) {
60 DBG ( "CHAP %p could not allocate %zd bytes for state\n",
66 chap->digest_context = state;
67 chap->response = ( state + digest->ctxsize );
118 void *state = chap->digest_context; local
122 free ( state );
  /external/syslinux/gpxe/src/include/gpxe/
arc4.h 12 u8 state[256]; member in struct:arc4_ctx
  /external/webrtc/webrtc/base/
sha1.h 19 uint32_t state[5]; member in struct:rtc::SHA1_CTX
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDSignalingChannel.h 16 // State when disconnected.
18 // State when connection is established but not ready for use.
20 // State when connection is established and registered.
22 // State when connection encounters a fatal error.
30 didChangeState:(ARDSignalingChannelState)state;
41 @property(nonatomic, readonly) ARDSignalingChannelState state; variable
  /external/wpa_supplicant_8/src/crypto/
sha256_i.h 16 u32 state[8], curlen; member in struct:sha256_state
sha512_i.h 15 u64 length, state[8]; member in struct:sha512_state
  /frameworks/support/lifecycle/compiler/
reset_results.py 41 state = 0 variable
46 if (state == 0 and line.startswith(expected)):
47 state = 1 variable
51 if state == 1 and line.startswith("Actual Source:"):
52 state = 2 variable
55 if state == 2:
58 if state == 2 and line.rstrip() == "}":
60 state = 0 variable
  /hardware/interfaces/radio/1.0/vts/functional/
sap_hidl_hal_api.cpp 81 bool state = true; local
83 sap->powerReq(token, state);
  /prebuilts/go/darwin-x86/src/sync/
waitgroup.go 26 // the aligned 8 bytes in them as state.
31 func (wg *WaitGroup) state() *uint64 { func
53 statep := wg.state()
63 state := atomic.AddUint64(statep, uint64(delta)<<32)
64 v := int32(state >> 32)
65 w := uint32(state)
82 // Now there can't be concurrent mutations of state:
86 if *statep != state {
103 statep := wg.state()
109 state := atomic.LoadUint64(statep
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/issue4932.dir/
state.go 5 package state package
14 type State struct{}
16 func (s *State) x(*Settings) {}
  /prebuilts/go/linux-x86/src/sync/
waitgroup.go 26 // the aligned 8 bytes in them as state.
31 func (wg *WaitGroup) state() *uint64 { func
53 statep := wg.state()
63 state := atomic.AddUint64(statep, uint64(delta)<<32)
64 v := int32(state >> 32)
65 w := uint32(state)
82 // Now there can't be concurrent mutations of state:
86 if *statep != state {
103 statep := wg.state()
109 state := atomic.LoadUint64(statep
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/issue4932.dir/
state.go 5 package state package
14 type State struct{}
16 func (s *State) x(*Settings) {}
  /prebuilts/misc/windows/sdl2/test/
testpower.c 21 const SDL_PowerState state = SDL_GetPowerInfo(&seconds, &percent); local
25 switch (state) {
46 SDL_Log("State: %s\n", statestr);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.dtor/
null.pass.cpp 28 int state() const { return state_; } function in class:Deleter
36 assert(d.state() == 0);
42 assert(d.state() == 0);
  /test/vts/drivers/hal/libdatatype/
hal_light.cpp 38 light_state_t* state = (light_state_t*)malloc(sizeof(light_state_t)); local
40 state->color = RandomUint32();
41 state->flashMode = RandomInt32();
42 state->flashOnMS = RandomInt32();
43 state->flashOffMS = RandomInt32();
46 state->brightnessMode = BRIGHTNESS_MODE_USER;
48 state->brightnessMode = BRIGHTNESS_MODE_SENSOR;
51 state->brightnessMode = RandomInt32();
54 return state;
61 light_state_t* state = (light_state_t*)malloc(sizeof(light_state_t)) local
    [all...]
  /external/easymock/src/org/easymock/internal/
MocksControl.java 28 private IMocksControlState state; field in class:MocksControl
44 return state;
49 state.assertRecordState();
60 state.assertRecordState();
76 state = new RecordState(behavior);
97 state.replay();
98 state = new ReplayState(behavior);
107 state.verify();
117 state.checkOrder(value);
125 state.makeThreadSafe(threadSafe);
    [all...]

Completed in 1203 milliseconds

1 23 4 5 6 7 8 91011>>