Home
last modified time | relevance | path

Searched refs:head (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DDisplayImageCommand.cs81 var head = new byte[8]; in CheckFormat()
83 file.Read(head, 0, 8); in CheckFormat()
86 if(head.Take(JpegPrefix.Length).SequenceEqual(JpegPrefix)) in CheckFormat()
91 if(head.Take(PngPrefix.Length).SequenceEqual(PngPrefix)) in CheckFormat()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/renode/
Drenode_memory.c49 static void move_to_head(list_node_t** head, list_node_t* node) in move_to_head() argument
51 if(*head == node) in move_to_head()
67 (*head)->prev = node; in move_to_head()
69 node->next = *head; in move_to_head()
70 *head = node; in move_to_head()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs544 public static IEnumerable<T> Prepend<T>(this IEnumerable<T> tail, params T[] head) in Prepend() argument
550 return ConcatIterator(head, tail, true); in Prepend()