/external/python/cpython3/Lib/xml/etree/ |
ElementInclude.py | 117 if e.tail: 118 node.tail = (node.tail or "") + e.tail 128 node.tail = (node.tail or "") + text + (e.tail or "") 130 elem.text = (elem.text or "") + text + (e.tail or "")
|
/external/e2fsprogs/contrib/android/ |
block_range.c | 15 void add_blocks_to_range(struct block_range **head, struct block_range **tail, 19 *head = *tail = new_block_range(blk_start, blk_end); 20 else if ((*tail)->end + 1 == blk_start) 21 (*tail)->end += (blk_end - blk_start + 1); 24 (*tail)->next = range; 25 *tail = range;
|
/external/u-boot/lib/ |
list_sort.c | 25 struct list_head head, *tail = &head; local 30 tail->next = a; 33 tail->next = b; 36 tail = tail->next; 38 tail->next = a?:b; 55 struct list_head *tail = head; local 60 tail->next = a; 61 a->prev = tail; 64 tail->next = b [all...] |
/external/jemalloc/include/jemalloc/internal/ |
hash.h | 133 /* tail */ 135 const uint8_t *tail = (const uint8_t *) (data + nblocks*4); local 140 case 3: k1 ^= tail[2] << 16; 141 case 2: k1 ^= tail[1] << 8; 142 case 1: k1 ^= tail[0]; k1 *= c1; k1 = hash_rotl_32(k1, 15); 205 /* tail */ 207 const uint8_t *tail = (const uint8_t *) (data + nblocks*16); local 214 case 15: k4 ^= tail[14] << 16; 215 case 14: k4 ^= tail[13] << 8; 216 case 13: k4 ^= tail[12] << 0 293 const uint8_t *tail = (const uint8_t*)(data + nblocks*16); local [all...] |
/external/python/cpython2/Lib/test/ |
test_xml_etree_c.py | 41 del element.tail 42 self.assertIsNone(element.tail) 43 element.tail = 'TAIL' 45 del element.tail 46 self.assertEqual(element.tail, 'TAIL') 58 # to clear() or a reading of text or tail, while a setter or clear() 64 elem.tail 70 elem.tail = X( [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_fifo.h | 34 size_t tail; member in struct:util_fifo 46 fifo->tail = 0; 78 if (++fifo->tail >= fifo->size) 79 fifo->tail = 0; 81 *ptr = array[fifo->tail];
|
/external/mesa3d/src/util/ |
u_vector.h | 46 uint32_t tail; member in struct:u_vector 59 return (queue->head - queue->tail) / queue->element_size; 65 assert(vector->tail < vector->head); 74 return (void *)((char *)vector->data + (vector->tail & (vector->size - 1))); 85 for (uint32_t __u_vector_offset = (queue)->tail; \
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/ |
SList.h | 59 SListNode *head, *tail;
member in class:SList 61 SList() {head=tail=NULL;}
62 virtual ~SList() {head=tail=NULL;}
|
slist.cpp | 63 SListNode *p, *tail=NULL;
local 71 head = tail = p;
75 tail->setNext(p);
76 tail = p;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/ |
SList.h | 59 SListNode *head, *tail;
member in class:SList 61 SList() {head=tail=NULL;}
62 virtual ~SList() {head=tail=NULL;}
|
slist.cpp | 62 SListNode *p, *tail=NULL;
local 70 head = tail = p;
74 tail->setNext(p);
75 tail = p;
|
/external/libchrome/mojo/public/tools/bindings/pylib/mojom_tests/generate/ |
generator_unittest.py | 15 path, tail = os.path.split(path) 16 assert tail 17 if tail == dirname:
|
/dalvik/tools/ |
get-hprof | 24 FILE_BASE=`adb shell ls -l '/data/misc/heap-dump*.hprof' | tail -1 | \
|
/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/ |
cpus2use.sh | 26 idlecpus=`mpstat | tail -1 | \
|
/external/ltp/testcases/kernel/device-drivers/drm/kernel_space/ |
load_tdrm.sh | 6 minor=`dmesg | grep "Initialized tdrm" | tail -n 1 | awk '{print \$NF}'`
|
/external/ltp/testcases/kernel/sched/sched_stress/ |
sched_stress.sh | 34 tail -n 5 /tmp/tmp$$
|
/external/tensorflow/tensorflow/contrib/ignite/python/tests/bin/ |
start-plain.sh | 24 tail -f nohup.out
|
/device/generic/car/emulator/audio/driver/ |
audio_vbuffer.c | 42 audio_vbuffer->tail = 0; 84 if (audio_vbuffer->live == 0 || audio_vbuffer->head > audio_vbuffer->tail) { 87 } else if (audio_vbuffer->head < audio_vbuffer->tail) { 88 frames = MIN(frame_count, audio_vbuffer->tail - (audio_vbuffer->head)); 116 audio_vbuffer->tail > audio_vbuffer->head) { 118 MIN(frame_count, audio_vbuffer->frame_count - audio_vbuffer->tail); 119 } else if (audio_vbuffer->tail < audio_vbuffer->head) { 120 frames = MIN(frame_count, audio_vbuffer->head - audio_vbuffer->tail); 126 &audio_vbuffer->data[audio_vbuffer->tail * audio_vbuffer->frame_size], 131 audio_vbuffer->tail [all...] |
/external/mesa3d/src/compiler/nir/ |
nir_lower_indirect_derefs.c | 29 nir_deref_var *deref, nir_deref *tail, 73 nir_deref_var *deref, nir_deref *tail, 76 for (; tail->child; tail = tail->child) { 77 if (tail->child->deref_type != nir_deref_type_array) 80 nir_deref_array *arr = nir_deref_as_array(tail->child); 84 int length = glsl_get_length(tail->type); 86 emit_indirect_load_store(b, orig_instr, deref, tail, -arr->base_offset, 91 assert(tail && tail->child == NULL) [all...] |
nir_lower_samplers_as_deref.c | 74 remove_struct_derefs(nir_deref *tail, 78 if (!tail->child) 81 switch (tail->child->deref_type) { 83 unsigned length = glsl_get_length(tail->type); 85 remove_struct_derefs(tail->child, state, b, path, location); 87 tail->type = glsl_get_array_instance(tail->child->type, length); 92 nir_deref_struct *deref_struct = nir_deref_as_struct(tail->child); 94 *location += glsl_get_record_location_offset(tail->type, deref_struct->index); 96 glsl_get_struct_elem_name(tail->type, deref_struct->index)) [all...] |
/external/eigen/doc/examples/ |
Tutorial_BlockOperations_vector.cpp | 11 cout << "v.tail<3>() = " << endl << v.tail<3>() << endl << endl;
|
/external/selinux/libsepol/cil/src/ |
cil_list.c | 51 new_list->tail = NULL; 110 if (list->tail == NULL) { 112 list->tail = item; 116 list->tail->next = item; 117 list->tail = item; 132 if (list->tail == NULL) { 134 list->tail = item; 156 if (curr == list->tail) { 158 return list->tail; 187 if (list->tail == NULL) [all...] |
/external/u-boot/include/ |
circbuf.h | 15 char *tail; /* pointer to space for next element */ member in struct:circbuf
|
/external/vogar/bin/ |
vogar | 11 latest_android_sdk=`ls -1 ${android_sdks_dir} | sort -n | tail -1` 19 latest_android_platform=`ls -1 ${android_platforms_dir} | sort -n | tail -1`
|
/external/grpc-grpc/src/ruby/ext/grpc/ |
rb_event_thread.c | 42 grpc_rb_event* tail; member in struct:grpc_rb_event_queue 59 if (event_queue.tail == NULL) { 60 event_queue.head = event_queue.tail = event; 62 event_queue.tail->next = event; 63 event_queue.tail = event; 76 event_queue.head = event_queue.tail = NULL; 135 event_queue.head = event_queue.tail = NULL;
|