HomeSort by relevance Sort by last modified time
    Searched full:linkage (Results 26 - 50 of 2558) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/test/Assembler/
private-protected-variable.ll 4 ; CHECK: symbol with local linkage must have default visibility
internal-hidden-alias.ll 6 ; CHECK: symbol with local linkage must have default visibility
internal-protected-alias.ll 6 ; CHECK: symbol with local linkage must have default visibility
private-hidden-alias.ll 6 ; CHECK: symbol with local linkage must have default visibility
private-protected-alias.ll 6 ; CHECK: symbol with local linkage must have default visibility
  /external/mesa3d/src/gallium/drivers/svga/
svga_link.h 18 struct shader_linkage *linkage);
svga_link.c 45 struct shader_linkage *linkage)
49 for (i = 0; i < ARRAY_SIZE(linkage->input_map); i++) {
50 linkage->input_map[i] = INVALID_INDEX;
73 linkage->input_map[i] = outshader_info->num_outputs + 1 + sem_index;
75 free_slot = MAX2(free_slot, linkage->input_map[i] + 1);
83 linkage->input_map[i] = j;
90 linkage->num_inputs = inshader_info->num_inputs;
94 if (linkage->input_map[i] == INVALID_INDEX) {
96 linkage->input_map[i] = j;
103 debug_printf("### linkage info:\n")
    [all...]
  /external/syslinux/gpxe/src/arch/x86_64/include/bits/
compiler.h 9 /** Declare a function with libgcc implicit linkage */
  /external/llvm/test/Linker/
link-flags.ll 1 ; RUN: llvm-link -S %S/Inputs/linkage.b.ll %S/Inputs/linkage.c.ll | FileCheck %s -check-prefix=B -check-prefix=C -check-prefix=CU
2 ; RUN: llvm-link -S -only-needed %S/Inputs/linkage.b.ll %S/Inputs/linkage.c.ll | FileCheck %s -check-prefix=B -check-prefix=C -check-prefix=CN
3 ; RUN: llvm-link -S -internalize %S/Inputs/linkage.b.ll %S/Inputs/linkage.c.ll | FileCheck %s -check-prefix=B -check-prefix=CI
4 ; RUN: llvm-link -S -internalize -only-needed %S/Inputs/linkage.b.ll %S/Inputs/linkage.c.ll | FileCheck %s -check-prefix=B -check-prefix=CN
  /external/llvm/include/llvm/IR/
GlobalValue.h 39 /// @brief An enumeration for the kinds of linkage for global values.
50 ExternalWeakLinkage,///< ExternalWeak linkage description.
70 LinkageTypes Linkage, const Twine &Name, unsigned AddressSpace)
72 ValueType(Ty), Linkage(Linkage), Visibility(DefaultVisibility),
82 unsigned Linkage : 4; // The linkage of this global
203 "local linkage requires default visibility");
246 static bool isExternalLinkage(LinkageTypes Linkage) {
247 return Linkage == ExternalLinkage
    [all...]
  /external/clang/test/SemaCXX/
attr-weak.cpp 3 static int test0 __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
4 static void test1() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
10 int test3 __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
11 void test4() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
20 static void test6() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
40 __attribute__((weak)) auto Test9 = Internal(); // expected-error {{weak declaration cannot have internal linkage}}
function-extern-c.cpp 27 extern "C" U f3( void ); // expected-warning {{'f3' has C-linkage specified, but returns user-defined type 'U' which is incompatible with C}}
28 extern "C" S f0(void); // expected-warning {{'f0' has C-linkage specified, but returns user-defined type 'S' which is incompatible with C}}
29 extern "C" A f4( void ); // expected-warning {{'f4' has C-linkage specified, but returns user-defined type 'A' which is incompatible with C}}
40 extern "C" struct mypodstruct f12(); // expected-warning {{'f12' has C-linkage specified, but returns incomplete type 'struct mypodstruct' which could be incompatible with C}}
48 extern "C" A f(void); // expected-warning {{'f' has C-linkage specified, but returns incomplete type 'test2::A' which could be incompatible with C}}
74 #pragma clang diagnostic ignored "-Wreturn-type-c-linkage"
77 A bbb(); // expected-warning {{'bbb' has C-linkage specified, but returns user-defined type 'rdar13364028::A' which is incompatible with C}}
78 A ccc() { // expected-warning {{'ccc' has C-linkage specified, but returns user-defined type 'rdar13364028::A' which is incompatible with C}}
  /external/clang/test/Sema/
inline.c 13 inline int useStatic () { // expected-note 3 {{use 'static' to give inline function 'useStatic' internal linkage}}
14 staticFunction(); // expected-warning{{static function 'staticFunction' is used in an inline function with external linkage}}
15 (void)staticStruct.x; // expected-warning{{static variable 'staticStruct' is used in an inline function with external linkage}}
16 return staticVar; // expected-warning{{static variable 'staticVar' is used in an inline function with external linkage}}
20 staticFunction(); // expected-warning{{static function 'staticFunction' is used in an inline function with external linkage}}
21 return staticVar; // expected-warning{{static variable 'staticVar' is used in an inline function with external linkage}}
69 inline int useStaticAgain () { // expected-note 2 {{use 'static' to give inline function 'useStaticAgain' internal linkage}}
70 staticFunction(); // expected-warning{{static function 'staticFunction' is used in an inline function with external linkage}}
71 return staticVar; // expected-warning{{static variable 'staticVar' is used in an inline function with external linkage}}
76 inline void defineStaticVar() { // expected-note {{use 'static' to give inline function 'defineStaticVar' internal linkage}}
    [all...]
attr-weak.c 14 static int x __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
21 extern int pr14946_x __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
24 void pr14946_f() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
  /external/clang/test/Modules/
linkage-merge.cpp 4 #include "linkage-merge-bar.h"
11 // expected-note@Inputs/linkage-merge-foo.h:2 {{previous declaration is here}}
merge-name-for-linkage.cpp 2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I%S/Inputs/merge-name-for-linkage -verify %s
  /external/google-breakpad/src/testing/test/
gmock_link_test.h 241 // Tests the linkage of the ReturnVoid action.
249 // Tests the linkage of the Return action.
258 // Tests the linkage of the ReturnNull action.
266 // Tests the linkage of the ReturnRef action.
275 // Tests the linkage of the Assign action.
284 // Tests the linkage of the SetArgPointee action.
293 // Tests the linkage of the SetArrayArgument action.
306 // Tests the linkage of the SetErrnoAndReturn action.
318 // Tests the linkage of the Invoke(function) and Invoke(object, method) actions.
330 // Tests the linkage of the InvokeWithoutArgs action
    [all...]
  /external/googletest/googlemock/test/
gmock_link_test.h 241 // Tests the linkage of the ReturnVoid action.
249 // Tests the linkage of the Return action.
258 // Tests the linkage of the ReturnNull action.
266 // Tests the linkage of the ReturnRef action.
275 // Tests the linkage of the Assign action.
284 // Tests the linkage of the SetArgPointee action.
293 // Tests the linkage of the SetArrayArgument action.
306 // Tests the linkage of the SetErrnoAndReturn action.
318 // Tests the linkage of the Invoke(function) and Invoke(object, method) actions.
330 // Tests the linkage of the InvokeWithoutArgs action
    [all...]
  /external/v8/testing/gmock/test/
gmock_link_test.h 241 // Tests the linkage of the ReturnVoid action.
249 // Tests the linkage of the Return action.
258 // Tests the linkage of the ReturnNull action.
266 // Tests the linkage of the ReturnRef action.
275 // Tests the linkage of the Assign action.
284 // Tests the linkage of the SetArgPointee action.
293 // Tests the linkage of the SetArrayArgument action.
306 // Tests the linkage of the SetErrnoAndReturn action.
318 // Tests the linkage of the Invoke(function) and Invoke(object, method) actions.
330 // Tests the linkage of the InvokeWithoutArgs action
    [all...]
  /art/test/087-gc-after-link/
info.txt 1 This test causes a linkage error, which calls dvmFreeClassInnards on
  /development/ndk/platforms/android-9/include/linux/
rwsem.h 15 #include <linux/linkage.h>
  /external/clang/test/Modules/Inputs/
cxx-linkage-cache.h 2 // we would try to compute the linkage of a declaration before we
  /external/clang/test/SemaCXX/Inputs/
warn-unused-variables.h 1 // Verify that we don't warn about variables of internal-linkage type in
  /external/llvm/test/Verifier/
comdat2.ll 5 ; CHECK: comdat global value has private linkage
llvm.used-invalid-type2.ll 4 ; CHECK: Only global arrays can have appending linkage!

Completed in 2396 milliseconds

12 3 4 5 6 7 8 91011>>