Searched refs:attr (Results 126 - 150 of 1281) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/main/
H A Dattrib.c227 struct gl_accum_attrib *attr; local
228 attr = MALLOC_STRUCT( gl_accum_attrib );
229 memcpy( attr, &ctx->Accum, sizeof(struct gl_accum_attrib) );
230 save_attrib_data(&head, GL_ACCUM_BUFFER_BIT, attr);
235 struct gl_colorbuffer_attrib *attr; local
236 attr = MALLOC_STRUCT( gl_colorbuffer_attrib );
237 memcpy( attr, &ctx->Color, sizeof(struct gl_colorbuffer_attrib) );
240 attr->DrawBuffer[i] = ctx->DrawBuffer->ColorDrawBuffer[i];
241 save_attrib_data(&head, GL_COLOR_BUFFER_BIT, attr);
245 struct gl_current_attrib *attr; local
253 struct gl_depthbuffer_attrib *attr; local
260 struct gl_enable_attrib *attr; local
334 struct gl_eval_attrib *attr; local
341 struct gl_fog_attrib *attr; local
348 struct gl_hint_attrib *attr; local
355 struct gl_light_attrib *attr; local
363 struct gl_line_attrib *attr; local
370 struct gl_list_attrib *attr; local
377 struct gl_pixel_attrib *attr; local
386 struct gl_point_attrib *attr; local
393 struct gl_polygon_attrib *attr; local
407 struct gl_scissor_attrib *attr; local
414 struct gl_stencil_attrib *attr; local
460 struct gl_transform_attrib *attr; local
467 struct gl_viewport_attrib *attr; local
475 struct gl_multisample_attrib *attr; local
845 struct gl_attrib_node *attr, *next; local
1522 struct gl_pixelstore_attrib *attr; local
1534 struct gl_array_attrib *attr; local
1585 struct gl_array_attrib * attr = local
1625 struct gl_attrib_node *attr, *next; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_exec_draw.c168 GLuint attr; local
176 for (attr = 0; attr < VERT_ATTRIB_FF_MAX; attr++) {
177 exec->vtx.inputs[attr] = &vbo->currval[VBO_ATTRIB_POS+attr];
179 for (attr = 0; attr < MAT_ATTRIB_MAX; attr++) {
180 ASSERT(VERT_ATTRIB_GENERIC(attr) < Element
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_draw.c168 GLuint attr; local
176 for (attr = 0; attr < VERT_ATTRIB_FF_MAX; attr++) {
177 exec->vtx.inputs[attr] = &vbo->currval[VBO_ATTRIB_POS+attr];
179 for (attr = 0; attr < MAT_ATTRIB_MAX; attr++) {
180 ASSERT(VERT_ATTRIB_GENERIC(attr) < Element
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_sock_util.h39 pthread_mutexattr_t attr; local
40 pthread_mutexattr_init(&attr);
41 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
42 pthread_mutex_init(mutex, &attr);
/external/chromium_org/third_party/webrtc/modules/audio_device/test/android/audio_device_android_test/gen/org/webrtc/voiceengine/test/
H A DR.java11 public static final class attr { class in class:R
/external/valgrind/main/helgrind/tests/
H A Dtc10_rec_lock.c17 pthread_mutexattr_t attr; local
20 r = pthread_mutexattr_init( &attr );
22 r = pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
24 r = pthread_mutex_init( &mx1, &attr );
/external/chromium_org/remoting/signaling/
H A Dserver_log_entry_unittest.cc62 for (const XmlAttr* attr = elem->FirstAttr(); attr != NULL;
63 attr = attr->NextAttr(), attrCount++) {
64 if (attr->Name().Namespace().length() != 0) {
66 attr->Name().Namespace();
69 const std::string& key = attr->Name().LocalPart();
70 const std::string& value = attr->Value();
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_array.h36 int attr; member in struct:nouveau_array
48 nouveau_init_array(struct nouveau_array *a, int attr, int stride,
/external/clang/include/clang/Sema/
H A DMakefile13 $(Verb) $(ClangTableGen) -gen-clang-attr-template-instantiate -o \
19 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-list -o \
25 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-kinds -o \
31 $(Verb) $(ClangTableGen) -gen-clang-attr-spelling-index -o \
37 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-impl -o \
/external/jemalloc/src/
H A Dmutex.c53 const pthread_attr_t *__restrict attr, void *(*start_routine)(void *),
60 return (pthread_create_fptr(thread, attr, start_routine, arg));
91 pthread_mutexattr_t attr;
93 if (pthread_mutexattr_init(&attr) != 0)
95 pthread_mutexattr_settype(&attr, MALLOC_MUTEX_TYPE);
96 if (pthread_mutex_init(&mutex->lock, &attr) != 0) {
97 pthread_mutexattr_destroy(&attr);
100 pthread_mutexattr_destroy(&attr);
52 pthread_create(pthread_t *__restrict thread, const pthread_attr_t *__restrict attr, void *(*start_routine)(void *), void *__restrict arg) argument
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.h26 void AddAttribute(const DWARFAttribute& attr) argument
28 m_attributes.push_back(attr);
38 bool GetAttrAndFormByIndex(uint32_t idx, dw_attr_t& attr, dw_form_t& form) const argument
42 m_attributes[idx].get(attr, form);
45 attr = form = 0;
50 void GetAttrAndFormByIndexUnchecked(uint32_t idx, dw_attr_t& attr, dw_form_t& form) const argument
52 m_attributes[idx].get(attr, form);
65 uint32_t FindAttributeIndex(dw_attr_t attr) const;
H A DDWARFAbbreviationDeclaration.cpp52 dw_attr_t attr = data.GetULEB128(offset_ptr); local
55 if (attr && form)
56 m_attributes.push_back(DWARFAttribute(attr, form));
81 // *ostrm_ptr << " " << std::setw(29) << std::left << DW_AT_value_to_name(pos->attr()) << ' ' << DW_FORM_value_to_name(pos->form()) << std::endl;
105 dw_attr_t attr; local
111 attributes[i].get(attr, form);
112 switch (attr)
120 m_attributes.push_back(DWARFAttribute(attr, form));
133 m_attributes.push_back(DWARFAttribute(attr, form));
155 dw_attr_t attr; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_array.h36 int attr; member in struct:nouveau_array
48 nouveau_init_array(struct nouveau_array *a, int attr, int stride,
/external/compiler-rt/test/
H A Dlit.common.configured.in5 def set_default(attr, value):
6 if not getattr(config, attr, None):
7 setattr(config, attr, value)
/external/oprofile/libutil++/
H A Dxml_output.cpp52 string init_attr(tag_t attr, size_t value) argument
57 init_xml_int_attr(attr, value, buf, MAX_XML_BUF);
63 string init_attr(tag_t attr, double value) argument
68 init_xml_dbl_attr(attr, value, buf, MAX_XML_BUF);
74 string init_attr(tag_t attr, string const & str) argument
79 init_xml_str_attr(attr, str.c_str(), buf, MAX_XML_BUF);
/external/libselinux/src/
H A Dprocattr.c19 pid_t pid, const char *attr)
29 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
32 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
77 pid_t pid, const char *attr)
86 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
89 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
18 getprocattrcon(char ** context, pid_t pid, const char *attr) argument
76 setprocattrcon(const char * context, pid_t pid, const char *attr) argument
[all...]
/external/qemu/distrib/libselinux/src/
H A Dprocattr.c19 pid_t pid, const char *attr)
29 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
32 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
77 pid_t pid, const char *attr)
86 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
89 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
18 getprocattrcon(char ** context, pid_t pid, const char *attr) argument
76 setprocattrcon(const char * context, pid_t pid, const char *attr) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps.c104 struct wps_parse_attr attr; local
107 if (wps_parse_msg(cfg->assoc_wps_ie, &attr) < 0) {
110 } else if (attr.request_type == NULL) {
116 *attr.request_type);
117 data->request_type = *attr.request_type;
235 struct wps_parse_attr attr; local
238 * In theory, this could also verify that attr.sel_reg_config_methods
244 if (wps_parse_msg(msg, &attr) < 0 ||
245 !attr.selected_registrar || *attr
261 is_selected_pin_registrar(struct wps_parse_attr *attr) argument
296 struct wps_parse_attr attr; local
316 struct wps_parse_attr attr; local
388 struct wps_parse_attr attr; local
401 struct wps_parse_attr attr; local
547 struct wps_parse_attr attr; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps.c104 struct wps_parse_attr attr; local
107 if (wps_parse_msg(cfg->assoc_wps_ie, &attr) < 0) {
110 } else if (attr.request_type == NULL) {
116 *attr.request_type);
117 data->request_type = *attr.request_type;
235 struct wps_parse_attr attr; local
238 * In theory, this could also verify that attr.sel_reg_config_methods
244 if (wps_parse_msg(msg, &attr) < 0 ||
245 !attr.selected_registrar || *attr
261 is_selected_pin_registrar(struct wps_parse_attr *attr) argument
296 struct wps_parse_attr attr; local
316 struct wps_parse_attr attr; local
388 struct wps_parse_attr attr; local
401 struct wps_parse_attr attr; local
547 struct wps_parse_attr attr; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps.c104 struct wps_parse_attr attr; local
107 if (wps_parse_msg(cfg->assoc_wps_ie, &attr) < 0) {
110 } else if (attr.request_type == NULL) {
116 *attr.request_type);
117 data->request_type = *attr.request_type;
235 struct wps_parse_attr attr; local
238 * In theory, this could also verify that attr.sel_reg_config_methods
244 if (wps_parse_msg(msg, &attr) < 0 ||
245 !attr.selected_registrar || *attr
261 is_selected_pin_registrar(struct wps_parse_attr *attr) argument
296 struct wps_parse_attr attr; local
316 struct wps_parse_attr attr; local
388 struct wps_parse_attr attr; local
401 struct wps_parse_attr attr; local
547 struct wps_parse_attr attr; local
[all...]
/external/chromium_org/v8/src/base/platform/
H A Dmutex.cc18 pthread_mutexattr_t attr; local
19 result = pthread_mutexattr_init(&attr);
21 result = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
23 result = pthread_mutex_init(mutex, &attr);
25 result = pthread_mutexattr_destroy(&attr);
36 pthread_mutexattr_t attr; local
37 int result = pthread_mutexattr_init(&attr);
39 result = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
41 result = pthread_mutex_init(mutex, &attr);
43 result = pthread_mutexattr_destroy(&attr);
[all...]
/external/deqp/framework/delibs/dethread/unix/
H A DdeThreadUnix.c61 pthread_attr_t attr; local
70 if (pthread_attr_init(&attr) != 0)
79 if (pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE) != 0)
81 pthread_attr_destroy(&attr);
86 if (pthread_create(&thread->thread, &attr, startThread, thread) != 0)
88 pthread_attr_destroy(&attr);
94 pthread_attr_destroy(&attr);
/external/elfutils/0.153/backends/
H A Dalpha_retval.c69 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
71 if (attr == NULL)
76 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
84 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
85 typedie = dwarf_formref_die (attr, &die_mem);
97 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
98 typedie = dwarf_formref_die (attr, &die_mem);
H A Darm_retval.c65 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
67 if (attr == NULL)
72 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
80 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
81 typedie = dwarf_formref_die (attr, &die_mem);
94 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
95 typedie = dwarf_formref_die (attr, &die_mem);
H A Di386_retval.c69 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
71 if (attr == NULL)
76 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
84 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
85 typedie = dwarf_formref_die (attr, &die_mem);
97 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
98 typedie = dwarf_formref_die (attr, &die_mem);

Completed in 1207 milliseconds

1234567891011>>