HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 401 - 425 of 6954) sorted by null

<<11121314151617181920>>

  /external/ltp/testcases/kernel/syscalls/ipc/msgget/
msgget02.c 20 * 1) msgget(2) fails if a message queue exists for key and msgflg
22 * 2) msgget(2) fails if no message queue exists for key and msgflg
24 * 3) msgget(2) fails if a message queue exists for key, but the
45 int *key; member in struct:tcase
61 TEST(msgget(*tc->key, tc->flags));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/
2-3.c 58 pthread_key_t key; local
70 rc = pthread_key_create(&key, destructor);
76 rc = pthread_setspecific(key, &value);
84 /* Tell main that the key is created */
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/
9-1.c 111 key_t key; local
128 key = ftok("conformance/interfaces/sched_setparam/9-1.c", 1234);
129 shm_id = shmget(key, sizeof(int), IPC_CREAT | 0600);
  /external/mdnsresponder/mDNSWindows/ControlPanel/
FourthPage.cpp 95 HKEY key = NULL; local
109 NULL, REG_OPTION_NON_VOLATILE, KEY_READ|KEY_WRITE|KEY_WOW64_32KEY, NULL, &key, NULL );
113 err = RegQueryValueEx( key, L"Enabled", NULL, NULL, (LPBYTE) &enabled, &dwSize );
120 if ( key )
122 RegCloseKey( key );
151 HKEY key = NULL; local
156 NULL, REG_OPTION_NON_VOLATILE, KEY_READ|KEY_WRITE|KEY_WOW64_32KEY, NULL, &key, NULL );
160 err = RegSetValueEx( key, L"Enabled", NULL, REG_DWORD, (LPBYTE) &enabled, sizeof( enabled ) );
165 if ( key )
167 RegCloseKey( key );
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_fetch.c 70 struct translate_key key; local
89 key.element[nr].type = TRANSLATE_ELEMENT_INSTANCE_ID;
90 key.element[nr].input_format = PIPE_FORMAT_R32_USCALED;
91 key.element[nr].output_format = PIPE_FORMAT_R32_USCALED;
92 key.element[nr].output_offset = dst_offset;
96 key.element[nr].type = TRANSLATE_ELEMENT_NORMAL;
97 key.element[nr].input_format = draw->pt.vertex_element[ei].src_format;
98 key.element[nr].input_buffer = draw->pt.vertex_element[ei].vertex_buffer_index;
99 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
100 key.element[nr].instance_divisor = draw->pt.vertex_element[ei].instance_divisor
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_emit.h 50 struct ir3_shader_key key; member in struct:fd3_emit
66 emit->vp = ir3_shader_variant(so->shader, emit->key, emit->debug);
75 if (emit->key.binning_pass) {
81 emit->fp = ir3_shader_variant(so->shader, emit->key, emit->debug);
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_emit.h 50 struct ir3_shader_key key; member in struct:fd4_emit
75 emit->vp = ir3_shader_variant(so->shader, emit->key, emit->debug);
84 if (emit->key.binning_pass) {
90 emit->fp = ir3_shader_variant(so->shader, emit->key, emit->debug);
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_tgsi_transform.c 67 struct svga_token_key key; local
81 /* Create a token key */
82 memset(&key, 0, sizeof key);
83 key.gs.writes_psize = 1;
84 key.gs.sprite_coord_enable = svga->curr.rast->templ.sprite_coord_enable;
86 key.gs.sprite_origin_upper_left =
89 key.gs.aa_point = svga->curr.rast->templ.point_smooth;
99 key.gs.point_pos_stream_out = pos_out_index != -1;
103 * this token key
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
vertexshader9.c 178 uint64_t key; local
180 key = This->next_key;
181 if (key == This->last_key)
184 cso = nine_shader_variant_get(&This->variant, key);
194 info.sampler_mask_shadow = key & 0xf;
204 nine_shader_variant_add(&This->variant, key, info.cso);
208 This->last_key = key;
  /external/mesa3d/src/glx/apple/
apple_glx_surface.c 132 unsigned int key[2]; local
143 if (XAppleDRICreateSurface(dpy, screen, d->drawable, id, key, &s->uid)) {
146 error = xp_import_surface(key, &s->surface_id);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_ff_gs.c 49 struct brw_ff_gs_prog_key *key)
58 c.key = *key;
81 switch (key->primitive) {
108 gen6_sol_program(&c, key, num_verts, check_edge_flag);
114 switch (key->primitive) {
116 brw_ff_gs_quads( &c, key );
119 brw_ff_gs_quad_strip( &c, key );
144 &c.key, sizeof(c.key),
239 struct brw_ff_gs_prog_key key; local
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_filespec.cpp 105 for (const auto* key : keys) {
106 if (pDict->KeyExist(key)) {
108 WideString::FromLocal(pDict->GetStringFor(key).AsStringView());
134 const ByteString& key = keys[i]; local
135 if (!pDict->GetUnicodeTextFor(key).IsEmpty()) {
136 CPDF_Stream* pStream = pFiles->GetStreamFor(key);
  /external/python/cpython3/Modules/clinic/
_dbmmodule.c.h 42 "get($self, key, default=b\'\', /)\n"
45 "Return the value for key if present, otherwise default.");
51 _dbm_dbm_get_impl(dbmobject *self, const char *key,
58 const char *key; local
63 &key, &key_length, &default_value)) {
66 return_value = _dbm_dbm_get_impl(self, key, key_length, default_value);
73 "setdefault($self, key, default=b\'\', /)\n"
76 "Return the value for key if present, otherwise default.\n"
78 "If key is not in the database, it is inserted with default as the value.");
84 _dbm_dbm_setdefault_impl(dbmobject *self, const char *key,
92 const char *key; local
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
AttrResourceLoader.java 36 classAttrEnumToValue.put(key(viewName, enumName, name, isSystem), value); method
37 knownClassAttrs.add(key(viewName, enumName, isSystem)); method
44 return classAttrEnumToValue.get(key(className, attrName, attrValue, isSystem));
58 if (knownClassAttrs.contains(key(className, attrName, isSystem))) {
66 private String key(String viewName, String attrName, String name, boolean isSystem) { method in class:AttrResourceLoader
67 return key(viewName, attrName, isSystem) + "#" + name;
70 private String key(String viewName, String attrName, boolean isSystem) { method in class:AttrResourceLoader
  /external/selinux/libsepol/include/sepol/policydb/
hashtab.h 7 * key values and datum values. The type of the key values
9 * functions for hash computation and key comparison are
25 typedef char *hashtab_key_t; /* generic key type */
26 typedef const char *const_hashtab_key_t; /* constant generic key type */
32 hashtab_key_t key; member in struct:hashtab_node
41 unsigned int (*hash_value) (struct hashtab_val * h, const_hashtab_key_t key); /* hash function */
42 int (*keycmp) (struct hashtab_val * h, const_hashtab_key_t key1, const_hashtab_key_t key2); /* key comparison function */
55 key),
61 Inserts the specified (key, datum) pair into the specified hash table
    [all...]
  /external/skia/src/gpu/
GrStencilSettings.cpp 480 uint16_t* key = reinterpret_cast<uint16_t*>(b->add32n((kCount16 + 1) / 2)); local
481 memcpy(key, &fFront, sizeof(Face));
482 key[kCount16] = 0;
487 uint32_t* key = b->add32n(kCount32); local
488 memcpy(key, &fFront, 2 * sizeof(Face));
492 // We rely on GrStencilSettings::Face being tightly packed for the key to be reliable.
  /external/skia/src/gpu/effects/
GrRRectBlurEffect.h 35 GrUniqueKey key; local
36 GrUniqueKey::Builder builder(&key, kDomain, 9, "RoundRect Blur Mask");
52 proxyProvider->findOrCreateProxyByUniqueKey(key, kBottomLeft_GrSurfaceOrigin));
91 proxyProvider->assignUniqueKeyToProxy(key, mask.get());
GrRectBlurEffect.h 27 GrUniqueKey key; local
28 GrUniqueKey::Builder builder(&key, kDomain, 1, "Rect Blur Mask");
33 proxyProvider->findOrCreateProxyByUniqueKey(key, kTopLeft_GrSurfaceOrigin));
58 proxyProvider->assignUniqueKeyToProxy(key, blurProfile.get());
GrSRGBEffect.cpp 70 uint32_t key = static_cast<uint32_t>(srgbe.mode()) | local
72 b->add32(key);
  /external/skia/src/gpu/ops/
GrStencilAndCoverPathRenderer.cpp 54 GrUniqueKey key; local
56 GrPath::ComputeKey(shape, &key, &isVolatile);
59 path = resourceProvider->findByUniqueKey<GrPath>(key);
66 resourceProvider->assignUniqueKeyToResource(key, path.get());
  /external/skia/tests/
DynamicHashTest.cpp 14 int key; member in struct:__anon34263::Entry
17 static const int& GetKey(const Entry& entry) { return entry.key; }
18 static uint32_t Hash(const int& key) { return key; }
28 int countCollisions(const int& key) const { return this->INHERITED::countCollisions(key); }
162 int key = (*iter).key; local
163 keys[count] = key;
164 ASSERT(hash.find(key) != nullptr)
177 int key = (*iter).key; local
    [all...]
GpuLayerCacheTest.cpp 45 const int* key, int keySize) {
46 return cache->findLayer(pictureID, initialMat, key, keySize);
58 int key[1] = { idOffset+i+1 }; local
64 key, 1,
68 key, 1);
140 int key[1] = { i + 1 };
142 key, 1);
168 int key[1] = { i+1 };
171 key, 1);
185 int key[1] = { i+1 }
    [all...]
  /external/skqp/samplecode/
SamplePathFinder.cpp 78 SkUnichar key; variable
79 if (SampleCode::CharQ(*evt, &key)) {
80 if (this->handleKeystroke(key)) {
87 bool handleKeystroke(SkUnichar key) {
88 switch (key) {
  /external/skqp/src/gpu/
GrResourceAllocator.cpp 136 const GrScratchKey &key = surface->resourcePriv().getScratchKey(); local
138 if (!key.isValid()) {
139 return; // can't do it w/o a valid scratch key
143 // If the surface has a unique key we throw it back into the resource cache.
150 fFreePool.insert(key, surface.release());
158 GrScratchKey key; local
160 proxy->priv().computeScratchKey(&key);
165 sk_sp<GrSurface> surface(fFreePool.findAndRemove(key, filter));
GrStencilSettings.cpp 480 uint16_t* key = reinterpret_cast<uint16_t*>(b->add32n((kCount16 + 1) / 2)); local
481 memcpy(key, &fFront, sizeof(Face));
482 key[kCount16] = 0;
487 uint32_t* key = b->add32n(kCount32); local
488 memcpy(key, &fFront, 2 * sizeof(Face));
492 // We rely on GrStencilSettings::Face being tightly packed for the key to be reliable.

Completed in 554 milliseconds

<<11121314151617181920>>