OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:new_
(Results
1 - 25
of
28
) sorted by relevancy
1
2
/src/external/gpl3/binutils/dist/include/
doubly-linked-list.h
68
/* Append the given node
new_
to the exising list.
69
Precondition: prev and next of
new_
must be NULL. */
74
LTYPE##_append (LWRAPPERTYPE *wrapper, LTYPE *
new_
)
78
LTYPE##_append (LWRAPPERTYPE *wrapper, LTYPE *
new_
) \
81
wrapper->first =
new_
; \
84
new_
->prev = wrapper->last; \
85
wrapper->last->next =
new_
; \
87
wrapper->last =
new_
; \
91
/* Prepend the given node
new_
to the existing list.
92
Precondition: prev and next of
new_
must be NULL. *
[
all
...]
/src/external/gpl3/binutils.old/dist/include/
doubly-linked-list.h
68
/* Append the given node
new_
to the exising list.
69
Precondition: prev and next of
new_
must be NULL. */
74
LTYPE##_append (LWRAPPERTYPE *wrapper, LTYPE *
new_
)
78
LTYPE##_append (LWRAPPERTYPE *wrapper, LTYPE *
new_
) \
81
wrapper->first =
new_
; \
84
new_
->prev = wrapper->last; \
85
wrapper->last->next =
new_
; \
87
wrapper->last =
new_
; \
91
/* Prepend the given node
new_
to the existing list.
92
Precondition: prev and next of
new_
must be NULL. *
[
all
...]
/src/external/gpl3/gdb/dist/include/
doubly-linked-list.h
68
/* Append the given node
new_
to the exising list.
69
Precondition: prev and next of
new_
must be NULL. */
74
LTYPE##_append (LWRAPPERTYPE *wrapper, LTYPE *
new_
)
78
LTYPE##_append (LWRAPPERTYPE *wrapper, LTYPE *
new_
) \
81
wrapper->first =
new_
; \
84
new_
->prev = wrapper->last; \
85
wrapper->last->next =
new_
; \
87
wrapper->last =
new_
; \
91
/* Prepend the given node
new_
to the existing list.
92
Precondition: prev and next of
new_
must be NULL. *
[
all
...]
/src/external/bsd/libarchive/dist/libarchive/test/
test_archive_read_support.c
49
test_success(constructor
new_
, enabler enable_, destructor free_)
51
struct archive *a =
new_
();
65
test_failure(constructor
new_
, enabler enable_, destructor free_)
67
struct archive *a =
new_
();
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdcpp/
memory.d
24
import core.stdcpp.
new_
: cpp_new;
38
import core.stdcpp.
new_
: cpp_delete;
new_.d
9
* Source: $(DRUNTIMESRC core/stdcpp/
new_
.d)
12
module core.stdcpp.
new_
;
allocator.d
14
import core.stdcpp.
new_
;
/src/external/gpl3/gcc.old/dist/gcc/d/dmd/
tokens.h
56
new_
,
member in class:TOK
306
new_
,
member in class:EXP
tokens.d
47
new_
,
296
new_
,
456
TOK.
new_
,
662
TOK.
new_
: "new",
sideeffect.d
186
case EXP.
new_
:
parse.d
525
case TOK.
new_
:
5650
case TOK.
new_
:
8313
case TOK.
new_
:
8592
case TOK.
new_
:
8669
if (peekNext() != TOK.identifier && peekNext() != TOK.
new_
)
8747
if (token.value == TOK.
new_
)
9436
EXP.
new_
: PREC.unary,
optimize.d
1337
case EXP.
new_
: visitNew(ex.isNewExp()); break;
hdrgen.d
2572
case EXP.
new_
: return visitNew(e.isNewExp());
4078
EXP.
new_
: "new",
expression.d
1646
inout(NewExp) isNewExp() { return op == EXP.
new_
? cast(typeof(return))this : null; }
3543
super(loc, EXP.
new_
, __traits(classInstanceSize, NewExp));
dcast.d
1473
case EXP.
new_
: return visitNew(e.isNewExp());
statementsem.d
3788
if (exp.op == EXP.
new_
)
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_syscalls.inc
1192
PRE_SYSCALL(symlink)(const void *old, const void *
new_
) {
1194
if (
new_
)
1195
PRE_READ(
new_
, __sanitizer::internal_strlen((const char *)
new_
) + 1);
1198
POST_SYSCALL(symlink)(long res, const void *old, const void *
new_
) {}
/src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_common_syscalls.inc
1285
PRE_SYSCALL(symlink)(const void *old, const void *
new_
) {
1288
if (
new_
)
1289
PRE_READ(
new_
, __sanitizer::internal_strlen((const char *)
new_
) + 1);
1292
POST_SYSCALL(symlink)(long res, const void *old, const void *
new_
) {}
/src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_common_syscalls.inc
1283
PRE_SYSCALL(symlink)(const void *old, const void *
new_
) {
1286
if (
new_
)
1287
PRE_READ(
new_
, __sanitizer::internal_strlen((const char *)
new_
) + 1);
1290
POST_SYSCALL(symlink)(long res, const void *old, const void *
new_
) {}
/src/external/gpl3/gcc.old/dist/gcc/cp/
tree.cc
5123
and the new one has the tags in
NEW_
. Give an error if there are tags
5124
in
NEW_
that weren't in OLD. */
5127
check_abi_tag_redeclaration (const_tree decl, const_tree old, const_tree
new_
)
5131
if (
new_
&& TREE_CODE (TREE_VALUE (
new_
)) == TREE_LIST)
5132
new_
= TREE_VALUE (
new_
);
5134
for (const_tree t =
new_
; t; t = TREE_CHAIN (t))
/src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
linux_syscall_hooks.h
690
#define __sanitizer_syscall_pre_symlink(old,
new_
) \
691
__sanitizer_syscall_pre_impl_symlink((long)(old), (long)(
new_
))
692
#define __sanitizer_syscall_post_symlink(res, old,
new_
) \
693
__sanitizer_syscall_post_impl_symlink(res, (long)(old), (long)(
new_
))
2394
void __sanitizer_syscall_pre_impl_symlink(long old, long
new_
);
2395
void __sanitizer_syscall_post_impl_symlink(long res, long old, long
new_
);
/src/external/gpl3/gcc/dist/gcc/cp/
tree.cc
5255
and the new one has the tags in
NEW_
. Give an error if there are tags
5256
in
NEW_
that weren't in OLD. */
5259
check_abi_tag_redeclaration (const_tree decl, const_tree old, const_tree
new_
)
5263
if (
new_
&& TREE_CODE (TREE_VALUE (
new_
)) == TREE_LIST)
5264
new_
= TREE_VALUE (
new_
);
5266
for (const_tree t =
new_
; t; t = TREE_CHAIN (t))
/src/external/gpl3/gcc/dist/libsanitizer/include/sanitizer/
linux_syscall_hooks.h
689
#define __sanitizer_syscall_pre_symlink(old,
new_
) \
690
__sanitizer_syscall_pre_impl_symlink((long)(old), (long)(
new_
))
691
#define __sanitizer_syscall_post_symlink(res, old,
new_
) \
692
__sanitizer_syscall_post_impl_symlink(res, (long)(old), (long)(
new_
))
2402
void __sanitizer_syscall_pre_impl_symlink(long old, long
new_
);
2403
void __sanitizer_syscall_post_impl_symlink(long res, long old, long
new_
);
/src/external/gpl3/gcc.old/dist/libsanitizer/include/sanitizer/
linux_syscall_hooks.h
689
#define __sanitizer_syscall_pre_symlink(old,
new_
) \
690
__sanitizer_syscall_pre_impl_symlink((long)(old), (long)(
new_
))
691
#define __sanitizer_syscall_post_symlink(res, old,
new_
) \
692
__sanitizer_syscall_post_impl_symlink(res, (long)(old), (long)(
new_
))
2402
void __sanitizer_syscall_pre_impl_symlink(long old, long
new_
);
2403
void __sanitizer_syscall_post_impl_symlink(long res, long old, long
new_
);
/src/external/lgpl3/gmp/dist/demos/perl/
GMP.xs
189
new_
##type (void) \
Completed in 66 milliseconds
1
2
Indexes created Wed Aug 05 00:25:39 UTC 2026