Home | History | Annotate | Download | only in syslinux

Lines Matching refs:in

7  *   files (the "Software"), to deal in the Software without
15 * be included in all copies or substantial portions of the Software.
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
52 struct initramfs *in;
61 in = malloc(sizeof(*in));
62 if (!in)
65 in->len = len;
66 in->data = data;
67 in->data_len = data_len;
68 in->align = align;
70 in->next = ihead;
71 in->prev = ihead->prev;
72 ihead->prev->next = in;
73 ihead->prev = in;