HomeSort by relevance Sort by last modified time
    Searched defs:new_item (Results 1 - 9 of 9) sorted by null

  /external/curl/src/
slist_wc.c 39 struct curl_slist *new_item = curl_slist_append(NULL, data); local
41 if(!new_item)
48 curl_slist_free_all(new_item);
52 list->first = new_item;
53 list->last = new_item;
57 list->last->next = new_item;
  /external/curl/lib/
slist.c 62 struct curl_slist *new_item; local
66 new_item = malloc(sizeof(struct curl_slist));
67 if(!new_item)
70 new_item->next = NULL;
71 new_item->data = data;
73 /* if this is the first item, then new_item *is* the list */
75 return new_item;
78 last->next = new_item;
  /external/tensorflow/tensorflow/core/grappler/inputs/
file_input_yielder.cc 121 std::unique_ptr<GrapplerItem> new_item = local
123 if (new_item == nullptr) {
129 *item = std::move(*new_item);
  /external/selinux/libsepol/cil/src/
cil_list.c 81 struct cil_list_item *new_item = cil_malloc(sizeof(*new_item)); local
82 new_item->next = NULL;
83 new_item->flavor = CIL_NONE;
84 new_item->data = NULL;
86 *item = new_item;
  /external/mesa3d/src/gallium/drivers/r600/
compute_memory_pool.c 626 struct compute_memory_item *new_item = NULL; local
631 new_item = (struct compute_memory_item *)
633 if (!new_item)
636 new_item->size_in_dw = size_in_dw;
637 new_item->start_in_dw = -1; /* mark pending */
638 new_item->id = pool->next_id++;
639 new_item->pool = pool;
640 new_item->real_buffer = NULL;
642 list_addtail(&new_item->link, pool->unallocated_list);
645 new_item, new_item->id, new_item->size_in_dw
    [all...]
  /external/deqp/external/openglcts/modules/glesext/tessellation_shader/
esextcTessellationShaderVertexSpacing.cpp 166 _tess_coordinate_cartesian new_item; local
168 new_item.x = coordinate[0];
169 new_item.y = coordinate[1];
182 edge.points.push_back(new_item);
197 new_edge.points.push_back(new_item);
1168 _tess_coordinate_delta new_item; local
    [all...]
esextcTessellationShaderTCTE.cpp 2915 _vec4 new_item = _vec4(data_ptr[0], data_ptr[1], data_ptr[2], data_ptr[3]); local
2928 _vec2 new_item = _vec2(data_ptr[0], data_ptr[1]); local
2940 _ivec4 new_item = _ivec4(data_ptr[0], data_ptr[1], data_ptr[2], data_ptr[3]); local
    [all...]
  /external/vulkan-validation-layers/libs/cjson/
cJSON.c 599 cJSON *new_item; local
600 if (!(new_item = cJSON_New_Item())) return 0; /* memory fail */
601 child->next = new_item;
602 new_item->prev = child;
603 child = new_item;
739 cJSON *new_item; local
740 if (!(new_item = cJSON_New_Item())) return 0; /* memory fail */
741 child->next = new_item;
742 new_item->prev = child;
743 child = new_item;
    [all...]
  /external/boringssl/src/include/openssl/
x509_vfy.h 122 int (*new_item)(X509_LOOKUP *ctx); member in struct:x509_lookup_method_st

Completed in 793 milliseconds